diff options
author | Pat Marion <pat.marion@kitware.com> | 2010-03-22 10:54:18 -0400 |
---|---|---|
committer | Pat Marion <pat.marion@kitware.com> | 2010-03-22 10:54:18 -0400 |
commit | fc4e7dcec0b4f87a96866a01621aaaffc04fa6f0 (patch) | |
tree | 2d863f89a7ff82c95f1e9c91c75896956ebedf3b /Source | |
parent | 9fd691636241b6456a0e83ab0c326a29430c4bbd (diff) | |
download | cmake-fc4e7dcec0b4f87a96866a01621aaaffc04fa6f0.tar.gz |
ENH: Adding symbol for cray compute linux to DynamicLoader.cxx
Diffstat (limited to 'Source')
-rw-r--r-- | Source/kwsys/DynamicLoader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/DynamicLoader.cxx b/Source/kwsys/DynamicLoader.cxx index a33703196c..58e02c76bd 100644 --- a/Source/kwsys/DynamicLoader.cxx +++ b/Source/kwsys/DynamicLoader.cxx @@ -444,7 +444,7 @@ const char* DynamicLoader::LastError() // 5. Implementation for systems without dynamic libs // __gnu_blrts__ is IBM BlueGene/L // __LIBCATAMOUNT__ is defined on Catamount on Cray compute nodes -#if defined(__gnu_blrts__) || defined(__LIBCATAMOUNT__) +#if defined(__gnu_blrts__) || defined(__LIBCATAMOUNT__) || defined(__CRAYXT_COMPUTE_LINUX_TARGET) #include <string.h> // for strerror() #define DYNAMICLOADER_DEFINED 1 |