Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Doerfert <doerfert@uni-saarland.de>2014-08-13 21:49:16 +0400
committerJohannes Doerfert <doerfert@uni-saarland.de>2014-08-13 21:49:16 +0400
commit5aa2194ea54135dbed754cb2f74fe17416e3e2e2 (patch)
tree6b89b4bd55f2ad21fe93d8a577f7357124544ce0 /polly/cmake
parentc7826524acda6a9c8816261d5c48b94dc92935ed (diff)
[Polly] Remove the PoCC and ScopLib support
Remove the PoCC and ScopLib support from Polly as we do not have a user/maintainer for it. Differential Revision: http://reviews.llvm.org/D4871 llvm-svn: 215563
Diffstat (limited to 'polly/cmake')
-rw-r--r--polly/cmake/FindSCoPLib.cmake19
1 files changed, 0 insertions, 19 deletions
diff --git a/polly/cmake/FindSCoPLib.cmake b/polly/cmake/FindSCoPLib.cmake
deleted file mode 100644
index cb8307faf2d5..000000000000
--- a/polly/cmake/FindSCoPLib.cmake
+++ /dev/null
@@ -1,19 +0,0 @@
-FIND_PATH(SCOPLIB_INCLUDE_DIR scoplib/scop.h)
-
-FIND_LIBRARY(SCOPLIB_LIBRARY NAMES scoplib)
-
-IF (SCOPLIB_INCLUDE_DIR AND SCOPLIB_LIBRARY)
- SET(SCOPLIB_FOUND TRUE)
-ENDIF (SCOPLIB_INCLUDE_DIR AND SCOPLIB_LIBRARY)
-
-
-IF (SCOPLIB_FOUND)
- IF (NOT Isl_FIND_QUIETLY)
- MESSAGE(STATUS "Found SCoPLib: ${SCOPLIB_LIBRARY}")
- ENDIF (NOT Isl_FIND_QUIETLY)
-ELSE (SCOPLIB_FOUND)
- IF (Isl_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find SCoPLib")
- ENDIF (Isl_FIND_REQUIRED)
-ENDIF (SCOPLIB_FOUND)
-