diff options
author | Jim Cownie <james.h.cownie@intel.com> | 2014-08-05 09:32:28 +0000 |
---|---|---|
committer | Jim Cownie <james.h.cownie@intel.com> | 2014-08-05 09:32:28 +0000 |
commit | 3b81ce6b15f78dba542f54ef693591f0089e3135 (patch) | |
tree | 8957c0df7a8668f52022f648cf048940a130d7b1 /openmp/runtime/src/kmp_str.h | |
parent | 947cef191d0306c813c39d6265dd183d83033be1 (diff) | |
download | bcm5719-llvm-3b81ce6b15f78dba542f54ef693591f0089e3135.tar.gz bcm5719-llvm-3b81ce6b15f78dba542f54ef693591f0089e3135.zip |
After three iterations of community review, we believe that this new
CMAKE buld system should meet everyone's requirements.
Enhanced CMake Build System Commit
* Supports Linux, Mac, Windows, and IntelĀ® Xeon Phi builds
* Supports building with gcc, icc, clang, and Visual Studio compilers
* Supports bulding "fat" libraries on OS/X with clang
* Details and documentation on how to use build system
are in Build_With_CMake.txt
* To use the old CMake build system (corresponds to
CMakeLists.txt.old), just rename CMakeLists.txt to
CMakeLists.txt.other and rename CMakeLists.txt.old to
CMakeLists.txt
llvm-svn: 214850
Diffstat (limited to 'openmp/runtime/src/kmp_str.h')
-rw-r--r-- | openmp/runtime/src/kmp_str.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/openmp/runtime/src/kmp_str.h b/openmp/runtime/src/kmp_str.h index 634d1f1815a..7de3a2ec228 100644 --- a/openmp/runtime/src/kmp_str.h +++ b/openmp/runtime/src/kmp_str.h @@ -28,9 +28,8 @@ #endif // __cplusplus #if KMP_OS_WINDOWS - #define strdup _strdup - #define snprintf _snprintf - #define vsnprintf _vsnprintf +# define strdup _strdup +# define snprintf _snprintf #endif /* some macros to replace ctype.h functions */ |