[polly] r248487 - Rename Polly_isl to PollyISL
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 24 05:38:50 PDT 2015
Author: meinersbur
Date: Thu Sep 24 07:38:49 2015
New Revision: 248487
URL: http://llvm.org/viewvc/llvm-project?rev=248487&view=rev
Log:
Rename Polly_isl to PollyISL
Library names in the LLVM framework usually do not contain underscores.
Modified:
polly/trunk/lib/CMakeLists.txt
polly/trunk/lib/External/CMakeLists.txt
Modified: polly/trunk/lib/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CMakeLists.txt?rev=248487&r1=248486&r2=248487&view=diff
==============================================================================
--- polly/trunk/lib/CMakeLists.txt (original)
+++ polly/trunk/lib/CMakeLists.txt Thu Sep 24 07:38:49 2015
@@ -54,7 +54,7 @@ add_polly_library(Polly
${POLLY_HEADER_FILES}
)
-target_link_libraries(Polly Polly_isl)
+target_link_libraries(Polly PollyISL)
if (BUILD_SHARED_LIBS)
target_link_libraries(Polly
Modified: polly/trunk/lib/External/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/External/CMakeLists.txt?rev=248487&r1=248486&r2=248487&view=diff
==============================================================================
--- polly/trunk/lib/External/CMakeLists.txt (original)
+++ polly/trunk/lib/External/CMakeLists.txt Thu Sep 24 07:38:49 2015
@@ -254,12 +254,12 @@ set (ISL_FILES
isl/imath/imrat.c
)
-add_polly_library(Polly_isl FORCE_STATIC
+add_polly_library(PollyISL FORCE_STATIC
${ISL_FILES}
)
# ISL requires at least C99 to compile. gcc < 5.0 use -std=gnu89 as default.
-target_enable_c99(Polly_isl)
+target_enable_c99(PollyISL)
# Define the FLAGS for the compilation of isl and imath
#
@@ -272,7 +272,7 @@ target_enable_c99(Polly_isl)
#
# We also disable warnings which should be coped with upstream.
if (NOT MSVC)
- set_target_properties(Polly_isl PROPERTIES
+ set_target_properties(PollyISL PROPERTIES
COMPILE_FLAGS "-fvisibility=hidden -w"
)
endif ()
More information about the llvm-commits
mailing list