aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/config-ix.cmake
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-03-09 06:16:26 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-03-09 06:16:26 +0000
commitf9ab25e45da2b7dd3bbcdb7a73247fa260f0245d (patch)
treec00634bc55d85ddb82a29bff77d1da0dedc28cd1 /cmake/config-ix.cmake
parent0c433e93020a7c1ab9edfcae3073a9322daa7225 (diff)
downloadexternal_llvm-f9ab25e45da2b7dd3bbcdb7a73247fa260f0245d.zip
external_llvm-f9ab25e45da2b7dd3bbcdb7a73247fa260f0245d.tar.gz
external_llvm-f9ab25e45da2b7dd3bbcdb7a73247fa260f0245d.tar.bz2
Remove configurey-fu to autodetect hash_map and hash_set now that they are
no longer used in LLVM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66406 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/config-ix.cmake')
-rwxr-xr-xcmake/config-ix.cmake17
1 files changed, 0 insertions, 17 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index cbe48d8..9e5bcd8 100755
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -86,14 +86,6 @@ else( MSVC )
set(LTDL_DLOPEN_DEPLIBS 0) # TODO
endif( MSVC )
-if( NOT MSVC )
- # hash_map.h.in and hash_set.h.in contain a special case for MSVC
- include(CheckCxxHashmap)
- include(CheckCxxHashset)
- check_hashmap()
- check_hashset()
-endif( NOT MSVC )
-
# FIXME: Signal handler return type, currently hardcoded to 'void'
set(RETSIGTYPE void)
@@ -124,12 +116,3 @@ configure_file(
${LLVM_BINARY_DIR}/include/llvm/Support/DataTypes.h
)
-configure_file(
- ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT/hash_map.cmake
- ${LLVM_BINARY_DIR}/include/llvm/ADT/hash_map.h
- )
-
-configure_file(
- ${LLVM_MAIN_INCLUDE_DIR}/llvm/ADT/hash_set.cmake
- ${LLVM_BINARY_DIR}/include/llvm/ADT/hash_set.h
- )