diff options
author | Brad King <brad.king@kitware.com> | 2011-06-20 19:13:19 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-06-20 19:13:19 (GMT) |
commit | 146a7aee62340c5579bdd86510f36e8536f9ff7a (patch) | |
tree | b5fa478eaf46e56e86b9b5d19a5cce5eb6833f50 /Source | |
parent | 2ae5a43fa7efcd6fa61a9066c81fb2e776cda51b (diff) | |
parent | 3ba1713f6f64624a92b216d8f324d45a7e5635f9 (diff) | |
download | CMake-146a7aee62340c5579bdd86510f36e8536f9ff7a.zip CMake-146a7aee62340c5579bdd86510f36e8536f9ff7a.tar.gz CMake-146a7aee62340c5579bdd86510f36e8536f9ff7a.tar.bz2 |
Merge topic 'find_library-lib64-issue-12247+12248'
3ba1713 find_library: Use lib->lib64 conversion in CXX-only projects (#12247,#12248)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmFindLibraryCommand.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmFindLibraryCommand.cxx b/Source/cmFindLibraryCommand.cxx index 6355a85..2fa2cca 100644 --- a/Source/cmFindLibraryCommand.cxx +++ b/Source/cmFindLibraryCommand.cxx @@ -164,11 +164,6 @@ void cmFindLibraryCommand::AddArchitecturePaths(const char* suffix) void cmFindLibraryCommand::AddLib64Paths() { - if(!this->Makefile->GetLocalGenerator()->GetGlobalGenerator()-> - GetLanguageEnabled("C")) - { - return; - } std::string voidsize = this->Makefile->GetSafeDefinition("CMAKE_SIZEOF_VOID_P"); int size = atoi(voidsize.c_str()); |