Thanks Szilárd for your fast mail,

but it seems that is still failing and don't appears any new error. With BUILD_SHARED_LIBS flag it seems that it pass the library error but I receive a similar error with the executable (see attached file) mdrun-gpu, but this executable exist in other directory:

-rwxr-xr-x  1 root   root  3433307 Mar 29 08:31 mdrun-gpu

I attach also the CMakeCache list if it can help.

Thanks for any advise!

jordi inglés

El 28/03/11 21:50, Szilárd Páll escribió:
Hi Jordi,

I've never seen this error or anything similar, but I can give you hints.

The CMake build system first generates binaries in the build directory
which are also runnable from there (are linked against libs located in
the build three). When you do a "make install[-mdrun]", howerver,
these binaries get relinked to rewrite the library dependencies. lt
seems that in your case this last step fails.

What you can do is to try to run
$ make install-mdrun VERBOSE=1 ,
maybe you can see something on the verbose output. For reference I've
attached a verbose output of the above command I just generated.

Otherwise, you could set BUILD_SHARED_LIBS=OFF, case in which internal
Gromacs libraries will be linked statically.

Cheers,
--
Szilárd



2011/3/28 Jordi Inglés<jordi.ing...@qi.ub.es>:
Hi,

I'm compiling gromacs with gcc compiler (v 4.3.2), cmake (2.8.3) and OpenMM
2.0 in a SLES 11.0 Linux.

I follow the instructions in the page and it seems that the compilation goes
fine.

gpu01:/scratch/jingles/gcc/gromacs-4.5.3 # ls -ltra src/kernel/mdrun-gpu
-rwxr-xr-x 1 root root 518294 Mar 28 10:16 src/kernel/mdrun-gpu

But when I try to install the application I obtain this error:

make install-mdrun

-- Using default binary suffix: "-gpu"
-- Using default library suffix: "_gpu"
-- Using internal FFT library - fftpack
-- Configuring done
-- Generating done
-- Build files have been written to: /scratch/jingles/gcc/gromacs-4.5.3
Linking CXX static library libgmx_gpu_utils.a
[  0%] Built target gmx_gpu_utils
[ 78%] Built target gmx
[ 92%] Built target md
[ 98%] Built target gmxpreprocess
[ 98%] Built target openmm_api_wrapper
Linking CXX executable mdrun-gpu
[100%] Built target mdrun
Scanning dependencies of target install-mdrun
[100%] Installing mdrun
-- Install configuration: "Release"
-- Install component: "libraries"
CMake Error at
/scratch/jingles/gcc/gromacs-4.5.3/src/gmxlib/cmake_install.cmake:38 (FILE):
  file INSTALL cannot find
  
"/scratch/jingles/gcc/gromacs-4.5.3/src/gmxlib/CMakeFiles/CMakeRelink.dir/libgmx_gpu.so.6".
Call Stack (most recent call first):
  /scratch/jingles/gcc/gromacs-4.5.3/src/cmake_install.cmake:37 (INCLUDE)
  /scratch/jingles/gcc/gromacs-4.5.3/cmake_install.cmake:40 (INCLUDE)


make[3]: *** [src/kernel/CMakeFiles/install-mdrun] Error 1
make[2]: *** [src/kernel/CMakeFiles/install-mdrun.dir/all] Error 2
make[1]: *** [src/kernel/CMakeFiles/install-mdrun.dir/rule] Error 2
make: *** [install-mdrun] Error 2

It seems that CMakeRelink.dir it's empty (I supose that the own compilation
cleans it). the libgmx_gpu.so.6 exist in her source directory:

gpu01:/scratch/jingles/gcc/gromacs-4.5.3 # ls -ltra
src/gmxlib/libgmx_gpu.so*
-rwxr-xr-x 1 root root 3378435 Mar 28 10:11 src/gmxlib/libgmx_gpu.so.6
lrwxrwxrwx 1 root root      15 Mar 28 10:11 src/gmxlib/libgmx_gpu.so ->
libgmx_gpu.so.6


Have you got any idea about the problem? I tried to compile with the
--debut-output --debug-trycompile options of cmake that don't clean the
compilation after finishing for checking that CMakeRelink.dir is empty or
not, but it seems that still continues empty.

Thanks for any advise.

Jordi Inglés Camats

--

__________________________________
Jordi Inglés Camats
Institut de Química Teòrica Computacional (IQTCUB)
Facultat de Física i Química
Despatx 766


--
gmx-users mailing list    gmx-users@gromacs.org
http://lists.gromacs.org/mailman/listinfo/gmx-users
Please search the archive at
http://www.gromacs.org/Support/Mailing_Lists/Search before posting!
Please don't post (un)subscribe requests to the list. Use the www interface
or send it to gmx-users-requ...@gromacs.org.
Can't post? Read http://www.gromacs.org/Support/Mailing_Lists


--

__________________________________
Jordi Inglés Camats
Institut de Química Teòrica Computacional (IQTCUB)
Facultat de Física i Química
Despatx 766


# This is the CMakeCache file.
# For build in directory: /scratch/jingles/gcc/gromacs-4.5.3
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.

########################
# EXTERNAL cache entries
########################

//Enable shared libraries (can be problematic with MPI, Windows)
BUILD_SHARED_LIBS:BOOL=OFF

//Build the testing tree.
BUILD_TESTING:BOOL=ON

//Path to a program.
BZRCOMMAND:FILEPATH=BZRCOMMAND-NOTFOUND

//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar

//Choose the type of build, options are: Debug Release RelWithDebInfo
// MinSizeRel.
CMAKE_BUILD_TYPE:STRING=Release

//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON

//CXX compiler.
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++

//Flags used by the compiler during all build types
CMAKE_CXX_FLAGS:STRING=' -Wall -Wno-unused  '

//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-fno-inline  -g

//Flags used by the compiler during release minsize builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the compiler during release builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-fomit-frame-pointer -finline-functions 
-funroll-all-loops  -O3 -DNDEBUG

//Flags used by the compiler during Release with Debug Info builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g

//C compiler.
CMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc

//Flags used by the compiler during all build types
CMAKE_C_FLAGS:STRING=' -Wall -Wno-unused  '

//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-fno-inline  -g

//Flags used by the compiler during release minsize builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the compiler during release builds.
CMAKE_C_FLAGS_RELEASE:STRING=-fomit-frame-pointer -finline-functions 
-funroll-all-loops  -O3 -DNDEBUG

//Flags used by the compiler during Release with Debug Info builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g

//Linker flags
CMAKE_EXE_LINKER_FLAGS:STRING=' '

//Flags used by the linker during debug builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/aplic/GROMACS/4.5.3/gcc

//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld

//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake

//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING=

//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm

//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy

//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump

//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=Gromacs

//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib

//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING=

//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO

//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip

//If true, cmake will use relative paths in makefiles and projects.
CMAKE_USE_RELATIVE_PATHS:BOOL=OFF

//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make.  This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE

//Path to program used to compress files for transfer to the dart
// server
COMPRESSIONCOMMAND:FILEPATH=/usr/bin/gzip

//Path to the coverage program that CTest uses for performing coverage
// inspection
COVERAGE_COMMAND:FILEPATH=/usr/bin/gcov

//Enable to build Debian packages
CPACK_BINARY_DEB:BOOL=OFF

//Enable to build NSIS packages
CPACK_BINARY_NSIS:BOOL=OFF

//Enable to build RPM packages
CPACK_BINARY_RPM:BOOL=OFF

//Enable to build STGZ packages
CPACK_BINARY_STGZ:BOOL=ON

//Enable to build TBZ2 packages
CPACK_BINARY_TBZ2:BOOL=OFF

//Enable to build TGZ packages
CPACK_BINARY_TGZ:BOOL=ON

//Enable to build TZ packages
CPACK_BINARY_TZ:BOOL=ON

//Enable to build TBZ2 source packages
CPACK_SOURCE_TBZ2:BOOL=ON

//Enable to build TGZ source packages
CPACK_SOURCE_TGZ:BOOL=ON

//Enable to build TZ source packages
CPACK_SOURCE_TZ:BOOL=ON

//Enable to build ZIP source packages
CPACK_SOURCE_ZIP:BOOL=OFF

//How many times to retry timed-out CTest submissions.
CTEST_SUBMIT_RETRY_COUNT:STRING=3

//How long to wait between timed-out CTest submissions.
CTEST_SUBMIT_RETRY_DELAY:STRING=5

//Compile device code in 64 bit mode
CUDA_64_BIT_DEVICE_CODE:BOOL=ON

//Attach the build rule to the CUDA source file.  Enable only when
// the CUDA source file is added to at most one target.
CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE:BOOL=ON

//Generate and parse .cubin files in Device mode.
CUDA_BUILD_CUBIN:BOOL=OFF

//Build in Emulation mode
CUDA_BUILD_EMULATION:BOOL=OFF

//"cudart" library
CUDA_CUDART_LIBRARY:FILEPATH=/aplic/CUDA/3.2.16/cuda/lib64/libcudart.so

//"cuda" library (older versions only).
CUDA_CUDA_LIBRARY:FILEPATH=/usr/lib64/libcuda.so

//Directory to put all the output files.  If blank it will default
// to the CMAKE_CURRENT_BINARY_DIR
CUDA_GENERATED_OUTPUT_DIR:PATH=

//Generated file extension
CUDA_HOST_COMPILATION_CPP:BOOL=ON

//Path to a program.
CUDA_NVCC_EXECUTABLE:FILEPATH=/aplic/CUDA/3.2.16/cuda/bin/nvcc

//Semi-colon delimit multiple arguments.
CUDA_NVCC_FLAGS:STRING=

//Semi-colon delimit multiple arguments.
CUDA_NVCC_FLAGS_DEBUG:STRING=

//Semi-colon delimit multiple arguments.
CUDA_NVCC_FLAGS_MINSIZEREL:STRING=

//Semi-colon delimit multiple arguments.
CUDA_NVCC_FLAGS_RELEASE:STRING=

//Semi-colon delimit multiple arguments.
CUDA_NVCC_FLAGS_RELWITHDEBINFO:STRING=

//Propage C/CXX_FLAGS and friends to the host compiler via -Xcompile
CUDA_PROPAGATE_HOST_FLAGS:BOOL=ON

//Path to a file.
CUDA_SDK_ROOT_DIR:PATH=/scratch/jingles/sdk

//Path to a file.
CUDA_TOOLKIT_INCLUDE:PATH=/aplic/CUDA/3.2.16/cuda/include

//Toolkit location.
CUDA_TOOLKIT_ROOT_DIR:PATH=/aplic/CUDA/3.2.16/cuda

//Print out the commands run while compiling the CUDA source file.
//  With the Makefile generator this defaults to VERBOSE variable
// specified on the command line, but can be forced on with this
// option.
CUDA_VERBOSE_BUILD:BOOL=OFF

//Version of CUDA as computed from nvcc.
CUDA_VERSION:STRING=3.2

//"cublas" library
CUDA_cublas_LIBRARY:FILEPATH=/aplic/CUDA/3.2.16/cuda/lib64/libcublas.so

//"cublasemu" library
CUDA_cublasemu_LIBRARY:FILEPATH=CUDA_cublasemu_LIBRARY-NOTFOUND

//"cufft" library
CUDA_cufft_LIBRARY:FILEPATH=/aplic/CUDA/3.2.16/cuda/lib64/libcufft.so

//"cufftemu" library
CUDA_cufftemu_LIBRARY:FILEPATH=CUDA_cufftemu_LIBRARY-NOTFOUND

//Custom version string (if empty, use hard-coded default)
CUSTOM_VERSION_STRING:STRING=

//Path to a program.
CVSCOMMAND:FILEPATH=/usr/bin/cvs

//Options passed to the cvs update command.
CVS_UPDATE_OPTIONS:STRING=-d -A -P

//Limit of reported errors, -1 reports all.
DART_BUILD_ERROR_REPORT_LIMIT:BOOL=OFF

//Limit of reported warnings, -1 reports all.
DART_BUILD_WARNING_REPORT_LIMIT:BOOL=OFF

//If you have Dart installed, where is it located?
DART_ROOT:PATH=DART_ROOT-NOTFOUND

//Maximum time allowed before CTest will kill the test.
DART_TESTING_TIMEOUT:STRING=1500

//Show the actual output of the build, or if off show a . for each
// 1024 bytes.
DART_VERBOSE_BUILD:BOOL=OFF

//Should Dart server send email when build errors are found in
// Continuous builds?
DELIVER_CONTINUOUS_EMAIL:BOOL=Off

//Path to a program.
GITCOMMAND:FILEPATH=GITCOMMAND-NOTFOUND

//Switching off CPU-based acceleration, the OpenMM build does not
// support/need any!
GMX_ACCELERATION:STRING=none

//Suffix for GROMACS binaries (default: _d for double, _mpi for
// MPI, _mpi_d for MPI and double).
GMX_BINARY_SUFFIX:STRING=

//Work around broken calloc()
GMX_BROKEN_CALLOC:BOOL=OFF

//Use default suffixes for GROMACS binaries and libs (_d for double,
// _mpi for MPI; rerun cmake after changing to see relevant options)
GMX_DEFAULT_SUFFIX:BOOL=ON

//Do not optimize FFTW setups (not needed with SSE)
GMX_DISABLE_FFTW_MEASURE:BOOL=OFF

//Compile with dlopen, needed to read VMD supported file formats
GMX_DLOPEN:BOOL=ON

//Use double precision (much slower, use only if you really need
// it)
GMX_DOUBLE:BOOL=OFF

//Use external LAPACK instead of built-in
GMX_EXTERNAL_BLAS:BOOL=FALSE

//Use external LAPACK instead of built-in
GMX_EXTERNAL_LAPACK:BOOL=FALSE

//Build a library with mdrun functionality
GMX_FAHCORE:BOOL=OFF

//No external FFT libraries needed for the OpenMM build, switching
// to  fftpack!
GMX_FFT_LIBRARY:STRING=fftpack

//Add SSE assembly files for IA32
GMX_IA32_ASM:BOOL=OFF

//Suffix for GROMACS libs (default: _d for double, _mpi for MPI,
// _mpi_d for MPI and double).
GMX_LIBS_SUFFIX:STRING=

//Build a parallel (message-passing) version of GROMACS
GMX_MPI:BOOL=OFF

//Enable MPI_IN_PLACE for MPIs that have it defined
GMX_MPI_IN_PLACE:BOOL=ON

//Accelerated execution on GPUs through the OpenMM library (rerun
// cmake after changing to see relevant options)
GMX_OPENMM:BOOL=ON

//Use PowerPC hardware 1/sqrt
GMX_POWERPC_INVSQRT:BOOL=OFF

//When finding libraries prefer ".a" static archives (NOTE: this
// is enabled only for UNIX (excluding APPLE) platforms but it
// might not always work!
GMX_PREFER_STATIC_LIBS:BOOL=OFF

//QM package choices: none,gaussian,mopac,gamess,orca
GMX_QMMM_PROGRAM:STRING=none

//Use GROMACS software 1/sqrt
GMX_SOFTWARE_INVSQRT:STRING=OFF

//Build a parallel (thread-based) version of GROMACS (cannot be
// combined with MPI yet)
GMX_THREADS:BOOL=OFF

//Use X window system
GMX_X11:BOOL=OFF

//Add SSE assembly files for X86_64
GMX_X86_64_ASM:BOOL=OFF

//Path to gunzip executable
GUNZIPCOMMAND:FILEPATH=/usr/bin/gunzip

//Value Computed by CMake
Gromacs_BINARY_DIR:STATIC=/scratch/jingles/gcc/gromacs-4.5.3

//Value Computed by CMake
Gromacs_SOURCE_DIR:STATIC=/scratch/jingles/gcc/gromacs-4.5.3

//Path to a program.
HGCOMMAND:FILEPATH=HGCOMMAND-NOTFOUND

//Path to java command, used by the Dart server to create html.
JAVACOMMAND:FILEPATH=JAVACOMMAND-NOTFOUND

//Path to a file.
LIBXML2_INCLUDE_DIR:PATH=/usr/include/libxml2

//Path to a library.
LIBXML2_LIBRARIES:FILEPATH=/usr/lib64/libxml2.so

//Path to a program.
LIBXML2_XMLLINT_EXECUTABLE:FILEPATH=/usr/bin/xmllint

//Command to build the project
MAKECOMMAND:STRING=/usr/bin/gmake -i

//Path to the memory checking command, used for memory error detection.
MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND

//File that contains suppressions for the memory checker
MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH=

//Path to a file.
OpenMM_INCLUDE_DIR:PATH=/opt/LIBS/OpenMM2.0_gcc/include

//Path to a library.
OpenMM_LIBRARIES:FILEPATH=/opt/LIBS/OpenMM2.0_gcc/lib/libOpenMM.so

//Path to a library.
OpenMM_LIBRARIES_D:FILEPATH=OpenMM_LIBRARIES_D-NOTFOUND

//OpenMM plugins directory
OpenMM_PLUGIN_DIR:PATH=/opt/LIBS/OpenMM2.0_gcc/lib/plugins

//OpenMM installation directory
OpenMM_ROOT_DIR:PATH=/opt/LIBS/OpenMM2.0_gcc

//pkg-config executable
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config

//Path to scp command, used by CTest for submitting results to
// a Dart server
SCPCOMMAND:FILEPATH=/usr/bin/scp

//Name of the computer/site where compile is being run
SITE:STRING=gpu01

//Path to the SLURM sbatch executable
SLURM_SBATCH_COMMAND:FILEPATH=SLURM_SBATCH_COMMAND-NOTFOUND

//Path to the SLURM srun executable
SLURM_SRUN_COMMAND:FILEPATH=SLURM_SRUN_COMMAND-NOTFOUND

//Path to a program.
SVNCOMMAND:FILEPATH=SVNCOMMAND-NOTFOUND

//Generate development version string/information
USE_VERSION_H:BOOL=ON

//Dependencies for the target
gmx_LIB_DEPENDS:STATIC=general;dl;general;m;

//Dependencies for the target
gmx_gpu_utils_LIB_DEPENDS:STATIC=general;/aplic/CUDA/3.2.16/cuda/lib64/libcudart.so;general;/usr/lib64/libcuda.so;

//Dependencies for the target
gmxana_LIB_DEPENDS:STATIC=general;md;general;gmx;

//Dependencies for the target
gmxpreprocess_LIB_DEPENDS:STATIC=general;md;

//Dependencies for the target
md_LIB_DEPENDS:STATIC=general;gmx;general;dl;general;m;general;/usr/lib64/libxml2.so;

//Dependencies for the target
openmm_api_wrapper_LIB_DEPENDS:STATIC=general;gmx_gpu_utils;general;/opt/LIBS/OpenMM2.0_gcc/lib/libOpenMM.so;


########################
# INTERNAL cache entries
########################

//Build host & architecture
BUILD_MACHINE:INTERNAL=@TMP_MACHINE@
//MODIFIED property for variable: BUILD_SHARED_LIBS
BUILD_SHARED_LIBS-MODIFIED:INTERNAL=ON
//ADVANCED property for variable: BUILD_TESTING
BUILD_TESTING-ADVANCED:INTERNAL=1
//Build date & time
BUILD_TIME:INTERNAL=@TMP_TIME@
//Build user
BUILD_USER:INTERNAL=root@gpu01 [CMAKE]
//ADVANCED property for variable: BZRCOMMAND
BZRCOMMAND-ADVANCED:INTERNAL=1
//Test CFLAGS_COPT
CFLAGS_COPT:INTERNAL=1
//Test CFLAGS_EXCESS_PREC
CFLAGS_EXCESS_PREC:INTERNAL=
//Test CFLAGS_NOINLINE
CFLAGS_NOINLINE:INTERNAL=1
//Test CFLAGS_WARN
CFLAGS_WARN:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_BUILD_TOOL
CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1
//What is the target build tool cmake is generating for.
CMAKE_BUILD_TOOL:INTERNAL=/usr/bin/gmake
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/scratch/jingles/gcc/gromacs-4.5.3
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=8
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//ADVANCED property for variable: CMAKE_CTEST_COMMAND
CMAKE_CTEST_COMMAND-ADVANCED:INTERNAL=1
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
CMAKE_CXX_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
CMAKE_C_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
CMAKE_DETERMINE_CXX_ABI_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
CMAKE_DETERMINE_C_ABI_COMPILED:INTERNAL=TRUE
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Start directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/scratch/jingles/gcc/gromacs-4.5.3
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=13
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(unsigned short)
CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=2
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/bin/uname
//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS
CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: COMPRESSIONCOMMAND
COMPRESSIONCOMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: COVERAGE_COMMAND
COVERAGE_COMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_DEB
CPACK_BINARY_DEB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_NSIS
CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_RPM
CPACK_BINARY_RPM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_STGZ
CPACK_BINARY_STGZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_TBZ2
CPACK_BINARY_TBZ2-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_TGZ
CPACK_BINARY_TGZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_TZ
CPACK_BINARY_TZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_TBZ2
CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_TGZ
CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_TZ
CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_ZIP
CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CTEST_SUBMIT_RETRY_COUNT
CTEST_SUBMIT_RETRY_COUNT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CTEST_SUBMIT_RETRY_DELAY
CTEST_SUBMIT_RETRY_DELAY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_64_BIT_DEVICE_CODE
CUDA_64_BIT_DEVICE_CODE-ADVANCED:INTERNAL=1
//List of intermediate files that are part of the cuda dependency
// scanning.
CUDA_ADDITIONAL_CLEAN_FILES:INTERNAL=
//ADVANCED property for variable: CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE
CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_CUDART_LIBRARY
CUDA_CUDART_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_CUDA_LIBRARY
CUDA_CUDA_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_GENERATED_OUTPUT_DIR
CUDA_GENERATED_OUTPUT_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_HOST_COMPILATION_CPP
CUDA_HOST_COMPILATION_CPP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_NVCC_EXECUTABLE
CUDA_NVCC_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_NVCC_FLAGS
CUDA_NVCC_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_NVCC_FLAGS_DEBUG
CUDA_NVCC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_NVCC_FLAGS_MINSIZEREL
CUDA_NVCC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELEASE
CUDA_NVCC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELWITHDEBINFO
CUDA_NVCC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_PROPAGATE_HOST_FLAGS
CUDA_PROPAGATE_HOST_FLAGS-ADVANCED:INTERNAL=1
//MODIFIED property for variable: CUDA_SDK_ROOT_DIR
CUDA_SDK_ROOT_DIR-MODIFIED:INTERNAL=ON
//This is the value of the last time CUDA_SDK_ROOT_DIR was set
// successfully.
CUDA_SDK_ROOT_DIR_INTERNAL:INTERNAL=/scratch/jingles/sdk
//ADVANCED property for variable: CUDA_TOOLKIT_INCLUDE
CUDA_TOOLKIT_INCLUDE-ADVANCED:INTERNAL=1
//This is the value of the last time CUDA_TOOLKIT_ROOT_DIR was
// set successfully.
CUDA_TOOLKIT_ROOT_DIR_INTERNAL:INTERNAL=/aplic/CUDA/3.2.16/cuda
//ADVANCED property for variable: CUDA_VERSION
CUDA_VERSION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_cublas_LIBRARY
CUDA_cublas_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_cublasemu_LIBRARY
CUDA_cublasemu_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_cufft_LIBRARY
CUDA_cufft_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CUDA_cufftemu_LIBRARY
CUDA_cufftemu_LIBRARY-ADVANCED:INTERNAL=1
//Location of make2cmake.cmake
CUDA_make2cmake:INTERNAL=/scratch/jingles/gcc/gromacs-4.5.3/cmake/FindCUDA/make2cmake.cmake
//Location of parse_cubin.cmake
CUDA_parse_cubin:INTERNAL=/scratch/jingles/gcc/gromacs-4.5.3/cmake/FindCUDA/parse_cubin.cmake
//Location of run_nvcc.cmake
CUDA_run_nvcc:INTERNAL=/scratch/jingles/gcc/gromacs-4.5.3/cmake/FindCUDA/run_nvcc.cmake
//ADVANCED property for variable: CUSTOM_VERSION_STRING
CUSTOM_VERSION_STRING-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CVSCOMMAND
CVSCOMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CVS_UPDATE_OPTIONS
CVS_UPDATE_OPTIONS-ADVANCED:INTERNAL=1
//Test CXXFLAGS_COPT
CXXFLAGS_COPT:INTERNAL=1
//Test CXXFLAGS_EXCESS_PREC
CXXFLAGS_EXCESS_PREC:INTERNAL=
//Test CXXFLAGS_NOINLINE
CXXFLAGS_NOINLINE:INTERNAL=1
//Test CXXFLAGS_WARN
CXXFLAGS_WARN:INTERNAL=1
//ADVANCED property for variable: DART_BUILD_ERROR_REPORT_LIMIT
DART_BUILD_ERROR_REPORT_LIMIT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DART_BUILD_WARNING_REPORT_LIMIT
DART_BUILD_WARNING_REPORT_LIMIT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DART_ROOT
DART_ROOT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DART_TESTING_TIMEOUT
DART_TESTING_TIMEOUT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DART_VERBOSE_BUILD
DART_VERBOSE_BUILD-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DELIVER_CONTINUOUS_EMAIL
DELIVER_CONTINUOUS_EMAIL-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
FILE64_OK:INTERNAL=TRUE
//Details about finding CUDA
FIND_PACKAGE_MESSAGE_DETAILS_CUDA:INTERNAL=[/aplic/CUDA/3.2.16/cuda][/aplic/CUDA/3.2.16/cuda/bin/nvcc][/aplic/CUDA/3.2.16/cuda/include][/aplic/CUDA/3.2.16/cuda/lib64/libcudart.so][TRUE][v(3.1)]
//Details about finding LibXml2
FIND_PACKAGE_MESSAGE_DETAILS_LibXml2:INTERNAL=[/usr/lib64/libxml2.so][/usr/include/libxml2][v()]
//Details about finding OpenMM
FIND_PACKAGE_MESSAGE_DETAILS_OpenMM:INTERNAL=[/opt/LIBS/OpenMM2.0_gcc][/opt/LIBS/OpenMM2.0_gcc/lib/libOpenMM.so][/opt/LIBS/OpenMM2.0_gcc/lib][/opt/LIBS/OpenMM2.0_gcc/include][v()]
//Result of TRY_COMPILE
FSEEKO_COMPILE_OK:INTERNAL=TRUE
//ADVANCED property for variable: GITCOMMAND
GITCOMMAND-ADVANCED:INTERNAL=1
//Whether to reset the C flags
GMXCFLAGS_SET:INTERNAL=true
//Whether to reset the C++ flags
GMXCXXFLAGS_SET:INTERNAL=true
//ADVANCED property for variable: GMX_ACCELERATION
GMX_ACCELERATION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_BINARY_SUFFIX
GMX_BINARY_SUFFIX-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_BROKEN_CALLOC
GMX_BROKEN_CALLOC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_DISABLE_FFTW_MEASURE
GMX_DISABLE_FFTW_MEASURE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_DLOPEN
GMX_DLOPEN-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_DOUBLE
GMX_DOUBLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_EXTERNAL_BLAS
GMX_EXTERNAL_BLAS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_EXTERNAL_LAPACK
GMX_EXTERNAL_LAPACK-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_FAHCORE
GMX_FAHCORE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_FFT_LIBRARY
GMX_FFT_LIBRARY-ADVANCED:INTERNAL=1
//Result of test for IEEE754 FP format
GMX_FLOAT_FORMAT_IEEE754:INTERNAL=1
//ADVANCED property for variable: GMX_IA32_ASM
GMX_IA32_ASM-ADVANCED:INTERNAL=1
//Result of TEST_BIG_ENDIAN
GMX_INTEGER_BIG_ENDIAN:INTERNAL=0
//Result of test for large file support
GMX_LARGEFILES:INTERNAL=1
//ADVANCED property for variable: GMX_LIBS_SUFFIX
GMX_LIBS_SUFFIX-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_MPI
GMX_MPI-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_MPI_IN_PLACE
GMX_MPI_IN_PLACE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_POWERPC_INVSQRT
GMX_POWERPC_INVSQRT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_PREFER_STATIC_LIBS
GMX_PREFER_STATIC_LIBS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_QMMM_PROGRAM
GMX_QMMM_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_SOFTWARE_INVSQRT
GMX_SOFTWARE_INVSQRT-ADVANCED:INTERNAL=1
//Result of test for system XDR support
GMX_SYSTEM_XDR:INTERNAL=TRUE
//ADVANCED property for variable: GMX_THREADS
GMX_THREADS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMX_X86_64_ASM
GMX_X86_64_ASM-ADVANCED:INTERNAL=1
//Result of test for GCC x86 inline asm
GMX_X86_GCC_INLINE_ASM:INTERNAL=1
//Result of test for MSVC x86 inline asm
GMX_X86_MSVC_INLINE_ASM:INTERNAL=0
//Whether to reset the C flags
GROMACS_C_FLAGS_SET:INTERNAL=true
//ADVANCED property for variable: GUNZIPCOMMAND
GUNZIPCOMMAND-ADVANCED:INTERNAL=1
//Have library m
HAVE_CBRT:INTERNAL=1
//Result of TRY_COMPILE
HAVE_CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=TRUE
//Have include HAVE_DIRENT_H
HAVE_DIRENT_H:INTERNAL=1
//Have include HAVE_EMMINTRIN_H
HAVE_EMMINTRIN_H:INTERNAL=1
//Have function fileno
HAVE_FILENO:INTERNAL=1
//Have function fseeko
HAVE_FSEEKO:INTERNAL=1
//Have function fsync
HAVE_FSYNC:INTERNAL=1
//Have function gettimeofday
HAVE_GETTIMEOFDAY:INTERNAL=1
//Result of TRY_COMPILE
HAVE_GMX_FLOAT_FORMAT_IEEE754:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_GMX_INTEGER_BIG_ENDIAN:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_HAVE_SIGUSR1:INTERNAL=TRUE
//Have include HAVE_INTTYPES_H
HAVE_INTTYPES_H:INTERNAL=1
//Have includes HAVE_IO_H
HAVE_IO_H:INTERNAL=
//Have function isfinite
HAVE_ISFINITE:INTERNAL=
//Have function isnan
HAVE_ISNAN:INTERNAL=1
//Have library m
HAVE_LIBM:INTERNAL=1
//Have include HAVE_LIMITS_H
HAVE_LIMITS_H:INTERNAL=1
//Have include HAVE_MATH_H
HAVE_MATH_H:INTERNAL=1
//Have function memalign
HAVE_MEMALIGN:INTERNAL=1
//Have function memcmp
HAVE_MEMCMP:INTERNAL=1
//Have include HAVE_MEMORY_H
HAVE_MEMORY_H:INTERNAL=1
//Result of TRY_COMPILE
HAVE_PIPES:INTERNAL=TRUE
//Have includes HAVE_PMMINTRIN_H
HAVE_PMMINTRIN_H:INTERNAL=
//Have function posix_memalign
HAVE_POSIX_MEMALIGN:INTERNAL=1
//Have include HAVE_PTHREAD_H
HAVE_PTHREAD_H:INTERNAL=1
//Have include HAVE_PWD_H
HAVE_PWD_H:INTERNAL=1
//Have include HAVE_REGEX_H
HAVE_REGEX_H:INTERNAL=1
//Have include HAVE_RPC_RPC_H
HAVE_RPC_RPC_H:INTERNAL=1
//Have include HAVE_RPC_XDR_H
HAVE_RPC_XDR_H:INTERNAL=1
//Result of test for SIGUSR1
HAVE_SIGUSR1:INTERNAL=1
//Result of TRY_COMPILE
HAVE_SIZEOF_BOOL:INTERNAL=FALSE
//Result of TRY_COMPILE
HAVE_SIZEOF_INT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_SIZEOF_LONG_INT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_SIZEOF_LONG_LONG_INT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_SIZEOF_OFF_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_SIZEOF_VOIDP:INTERNAL=TRUE
//Have includes HAVE_SMMINTRIN_H
HAVE_SMMINTRIN_H:INTERNAL=
//Have include stddef.h
HAVE_STDDEF_H:INTERNAL=1
//Have include HAVE_STDINT_H
HAVE_STDINT_H:INTERNAL=1
//Have include HAVE_STDLIB_H
HAVE_STDLIB_H:INTERNAL=1
//Have function strcasecmp
HAVE_STRCASECMP:INTERNAL=1
//Have function strdup
HAVE_STRDUP:INTERNAL=1
//Have include HAVE_STRING_H
HAVE_STRING_H:INTERNAL=1
//Have include HAVE_SYS_STAT_H
HAVE_SYS_STAT_H:INTERNAL=1
//Have include HAVE_SYS_TIME_H
HAVE_SYS_TIME_H:INTERNAL=1
//Have include HAVE_SYS_TYPES_H
HAVE_SYS_TYPES_H:INTERNAL=1
//Have include HAVE_UNISTD_H
HAVE_UNISTD_H:INTERNAL=1
//Have function vprintf
HAVE_VPRINTF:INTERNAL=1
//Have include HAVE_XMMINTRIN_H
HAVE_XMMINTRIN_H:INTERNAL=1
//Have function _aligned_malloc
HAVE__ALIGNED_MALLOC:INTERNAL=
//Have function _commit
HAVE__COMMIT:INTERNAL=
//Have function _fileno
HAVE__FILENO:INTERNAL=
//Have function _isfinite
HAVE__ISFINITE:INTERNAL=
//Have function _isnan
HAVE__ISNAN:INTERNAL=
//Result of TRY_COMPILE
HAVE_gid_t:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_off_t:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_size_t:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_uid_t:INTERNAL=TRUE
//ADVANCED property for variable: HGCOMMAND
HGCOMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: JAVACOMMAND
JAVACOMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXML2_INCLUDE_DIR
LIBXML2_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXML2_LIBRARIES
LIBXML2_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXML2_XMLLINT_EXECUTABLE
LIBXML2_XMLLINT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MAKECOMMAND
MAKECOMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MEMORYCHECK_COMMAND
MEMORYCHECK_COMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MEMORYCHECK_SUPPRESSIONS_FILE
MEMORYCHECK_SUPPRESSIONS_FILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMM_INCLUDE_DIR
OpenMM_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMM_LIBRARIES
OpenMM_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OpenMM_LIBRARIES_D
OpenMM_LIBRARIES_D-ADVANCED:INTERNAL=1
PC_LIBXML_CFLAGS:INTERNAL=-I/usr/include/libxml2
PC_LIBXML_CFLAGS_I:INTERNAL=
PC_LIBXML_CFLAGS_OTHER:INTERNAL=
PC_LIBXML_FOUND:INTERNAL=1
PC_LIBXML_INCLUDEDIR:INTERNAL=/usr/include
PC_LIBXML_INCLUDE_DIRS:INTERNAL=/usr/include/libxml2
PC_LIBXML_LDFLAGS:INTERNAL=-lxml2
PC_LIBXML_LDFLAGS_OTHER:INTERNAL=
PC_LIBXML_LIBDIR:INTERNAL=/usr/lib64
PC_LIBXML_LIBRARIES:INTERNAL=xml2
PC_LIBXML_LIBRARY_DIRS:INTERNAL=
PC_LIBXML_LIBS:INTERNAL=
PC_LIBXML_LIBS_L:INTERNAL=
PC_LIBXML_LIBS_OTHER:INTERNAL=
PC_LIBXML_LIBS_PATHS:INTERNAL=
PC_LIBXML_PREFIX:INTERNAL=/usr
PC_LIBXML_STATIC_CFLAGS:INTERNAL=-I/usr/include/libxml2
PC_LIBXML_STATIC_CFLAGS_I:INTERNAL=
PC_LIBXML_STATIC_CFLAGS_OTHER:INTERNAL=
PC_LIBXML_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/libxml2
PC_LIBXML_STATIC_LDFLAGS:INTERNAL=-lxml2;-lz;-lm
PC_LIBXML_STATIC_LDFLAGS_OTHER:INTERNAL=
PC_LIBXML_STATIC_LIBDIR:INTERNAL=
PC_LIBXML_STATIC_LIBRARIES:INTERNAL=xml2;z;m
PC_LIBXML_STATIC_LIBRARY_DIRS:INTERNAL=
PC_LIBXML_STATIC_LIBS:INTERNAL=
PC_LIBXML_STATIC_LIBS_L:INTERNAL=
PC_LIBXML_STATIC_LIBS_OTHER:INTERNAL=
PC_LIBXML_STATIC_LIBS_PATHS:INTERNAL=
PC_LIBXML_VERSION:INTERNAL=2.7.1
PC_LIBXML_libxml-2.0_INCLUDEDIR:INTERNAL=
PC_LIBXML_libxml-2.0_LIBDIR:INTERNAL=
PC_LIBXML_libxml-2.0_PREFIX:INTERNAL=
PC_LIBXML_libxml-2.0_VERSION:INTERNAL=
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
//Result of test for signal return type
RETSIGTYPE:INTERNAL=void
//Result of TRY_COMPILE
RETSIGTYPE_INT_OK:INTERNAL=FALSE
//ADVANCED property for variable: SCPCOMMAND
SCPCOMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SITE
SITE-ADVANCED:INTERNAL=1
//CHECK_TYPE_SIZE: bool unknown
SIZEOF_BOOL:INTERNAL=
//CHECK_TYPE_SIZE: sizeof(int)
SIZEOF_INT:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(long int)
SIZEOF_LONG_INT:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(long long int)
SIZEOF_LONG_LONG_INT:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(off_t)
SIZEOF_OFF_T:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(void *)
SIZEOF_VOIDP:INTERNAL=8
//ADVANCED property for variable: SLURM_SBATCH_COMMAND
SLURM_SBATCH_COMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SLURM_SRUN_COMMAND
SLURM_SRUN_COMMAND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SVNCOMMAND
SVNCOMMAND-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
TEST_INLINE_KEYWORD:INTERNAL=TRUE
//Result of TRY_COMPILE
TEST_RESTRICT_KEYWORD:INTERNAL=TRUE
//ADVANCED property for variable: USE_VERSION_H
USE_VERSION_H-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
XDR_COMPILE_OK:INTERNAL=TRUE
__pkg_config_checked_PC_LIBXML:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(gid_t)
gid_t:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(off_t)
off_t:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(size_t)
size_t:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(uid_t)
uid_t:INTERNAL=4

/usr/bin/cmake -H/scratch/jingles/gcc/gromacs-4.5.3 
-B/scratch/jingles/gcc/gromacs-4.5.3 --check-build-system 
CMakeFiles/Makefile.cmake 0
make -f CMakeFiles/Makefile2 install-mdrun
make[1]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -H/scratch/jingles/gcc/gromacs-4.5.3 
-B/scratch/jingles/gcc/gromacs-4.5.3 --check-build-system 
CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles 75
make -f CMakeFiles/Makefile2 src/kernel/CMakeFiles/install-mdrun.dir/all
make[2]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/gmxlib/CMakeFiles/gmx.dir/build.make 
src/gmxlib/CMakeFiles/gmx.dir/depend
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
cd /scratch/jingles/gcc/gromacs-4.5.3 && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/gmxlib 
/scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/gmxlib 
/scratch/jingles/gcc/gromacs-4.5.3/src/gmxlib/CMakeFiles/gmx.dir/DependInfo.cmake
 --color=
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/gmxlib/CMakeFiles/gmx.dir/build.make 
src/gmxlib/CMakeFiles/gmx.dir/build
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[3]: Nothing to be done for `src/gmxlib/CMakeFiles/gmx.dir/build'.
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -E cmake_progress_report 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles  11 12 13 14 15 16 17 18 19 20 21 
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
[ 78%] Built target gmx
make -f src/mdlib/CMakeFiles/md.dir/build.make 
src/mdlib/CMakeFiles/md.dir/depend
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
cd /scratch/jingles/gcc/gromacs-4.5.3 && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/mdlib /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/mdlib 
/scratch/jingles/gcc/gromacs-4.5.3/src/mdlib/CMakeFiles/md.dir/DependInfo.cmake 
--color=
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/mdlib/CMakeFiles/md.dir/build.make src/mdlib/CMakeFiles/md.dir/build
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[3]: Nothing to be done for `src/mdlib/CMakeFiles/md.dir/build'.
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -E cmake_progress_report 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles  88 89 90 91 92 93 94 95 96 97
[ 92%] Built target md
make -f src/kernel/CMakeFiles/gmxpreprocess.dir/build.make 
src/kernel/CMakeFiles/gmxpreprocess.dir/depend
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
cd /scratch/jingles/gcc/gromacs-4.5.3 && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/CMakeFiles/gmxpreprocess.dir/DependInfo.cmake
 --color=
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/kernel/CMakeFiles/gmxpreprocess.dir/build.make 
src/kernel/CMakeFiles/gmxpreprocess.dir/build
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[3]: Nothing to be done for `src/kernel/CMakeFiles/gmxpreprocess.dir/build'.
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -E cmake_progress_report 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles  83 84 85 86 87
[ 98%] Built target gmxpreprocess
make -f src/kernel/gmx_gpu_utils/CMakeFiles/gmx_gpu_utils.dir/build.make 
src/kernel/gmx_gpu_utils/CMakeFiles/gmx_gpu_utils.dir/depend
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
cd /scratch/jingles/gcc/gromacs-4.5.3 && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/gmx_gpu_utils 
/scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/gmx_gpu_utils 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/gmx_gpu_utils/CMakeFiles/gmx_gpu_utils.dir/DependInfo.cmake
 --color=
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/kernel/gmx_gpu_utils/CMakeFiles/gmx_gpu_utils.dir/build.make 
src/kernel/gmx_gpu_utils/CMakeFiles/gmx_gpu_utils.dir/build
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[3]: Nothing to be done for 
`src/kernel/gmx_gpu_utils/CMakeFiles/gmx_gpu_utils.dir/build'.
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -E cmake_progress_report 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles 
[ 98%] Built target gmx_gpu_utils
make -f src/kernel/CMakeFiles/openmm_api_wrapper.dir/build.make 
src/kernel/CMakeFiles/openmm_api_wrapper.dir/depend
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
cd /scratch/jingles/gcc/gromacs-4.5.3 && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/CMakeFiles/openmm_api_wrapper.dir/DependInfo.cmake
 --color=
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/kernel/CMakeFiles/openmm_api_wrapper.dir/build.make 
src/kernel/CMakeFiles/openmm_api_wrapper.dir/build
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[3]: Nothing to be done for 
`src/kernel/CMakeFiles/openmm_api_wrapper.dir/build'.
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -E cmake_progress_report 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles 
[ 98%] Built target openmm_api_wrapper
make -f src/kernel/CMakeFiles/mdrun.dir/build.make 
src/kernel/CMakeFiles/mdrun.dir/depend
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
cd /scratch/jingles/gcc/gromacs-4.5.3 && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/CMakeFiles/mdrun.dir/DependInfo.cmake
 --color=
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/kernel/CMakeFiles/mdrun.dir/build.make 
src/kernel/CMakeFiles/mdrun.dir/build
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[3]: Nothing to be done for `src/kernel/CMakeFiles/mdrun.dir/build'.
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -E cmake_progress_report 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles  98
[100%] Built target mdrun
make -f src/kernel/CMakeFiles/install-mdrun.dir/build.make 
src/kernel/CMakeFiles/install-mdrun.dir/depend
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
cd /scratch/jingles/gcc/gromacs-4.5.3 && /usr/bin/cmake -E cmake_depends "Unix 
Makefiles" /scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel 
/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/CMakeFiles/install-mdrun.dir/DependInfo.cmake
 --color=
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make -f src/kernel/CMakeFiles/install-mdrun.dir/build.make 
src/kernel/CMakeFiles/install-mdrun.dir/build
make[3]: Entering directory `/scratch/jingles/gcc/gromacs-4.5.3'
/usr/bin/cmake -E cmake_progress_report 
/scratch/jingles/gcc/gromacs-4.5.3/CMakeFiles 
[100%] Installing mdrun
cd /scratch/jingles/gcc/gromacs-4.5.3/src/kernel && /usr/bin/cmake 
-DCOMPONENT=mdrun -P /scratch/jingles/gcc/gromacs-4.5.3/cmake_install.cmake
-- Install configuration: "Release"
-- Install component: "mdrun"
CMake Error at cmake_install.cmake:44 (FILE):
  file INSTALL cannot find
  
"/scratch/jingles/gcc/gromacs-4.5.3/src/kernel/CMakeFiles/CMakeRelink.dir/mdrun-gpu".
Call Stack (most recent call first):
  /scratch/jingles/gcc/gromacs-4.5.3/src/cmake_install.cmake:39 (INCLUDE)
  /scratch/jingles/gcc/gromacs-4.5.3/cmake_install.cmake:40 (INCLUDE)


make[3]: *** [src/kernel/CMakeFiles/install-mdrun] Error 1
make[3]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[2]: *** [src/kernel/CMakeFiles/install-mdrun.dir/all] Error 2
make[2]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make[1]: *** [src/kernel/CMakeFiles/install-mdrun.dir/rule] Error 2
make[1]: Leaving directory `/scratch/jingles/gcc/gromacs-4.5.3'
make: *** [install-mdrun] Error 2
-- 
gmx-users mailing list    gmx-users@gromacs.org
http://lists.gromacs.org/mailman/listinfo/gmx-users
Please search the archive at 
http://www.gromacs.org/Support/Mailing_Lists/Search before posting!
Please don't post (un)subscribe requests to the list. Use the 
www interface or send it to gmx-users-requ...@gromacs.org.
Can't post? Read http://www.gromacs.org/Support/Mailing_Lists

Reply via email to