system.cmake 3.9 KB
Newer Older
L
liaogang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
# 
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# 
# http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

L
liaogang 已提交
15
# Detects the OS and sets appropriate variables.
16 17 18
# CMAKE_SYSTEM_NAME only give us a coarse-grained name of the OS CMake is
# building for, but the host processor name like centos is necessary
# in some scenes to distinguish system for customization.
L
liaogang 已提交
19 20 21 22
#
# for instance, protobuf libs path is <install_dir>/lib64
# on CentOS, but <install_dir>/lib on other systems.

L
liaogang 已提交
23 24 25 26 27 28 29 30
IF(WIN32)
    SET(HOST_SYSTEM "win32")
ELSE(WIN32)
    IF(APPLE)
        EXEC_PROGRAM (sw_vers ARGS -productVersion OUTPUT_VARIABLE MACOSX_VERSION)
        STRING(REGEX MATCH "[0-9]+.[0-9]+" VERSION "${MACOSX_VERSION}")
        SET(MACOS_VERSION ${VERSION})
        SET(HOST_SYSTEM "macosx")
L
liaogang 已提交
31
        IF(NOT DEFINED ENV{MACOSX_DEPLOYMENT_TARGET})
L
liaogang 已提交
32 33 34
            # Set cache variable - end user may change this during ccmake or cmake-gui configure.
            SET(CMAKE_OSX_DEPLOYMENT_TARGET ${MACOS_VERSION} CACHE STRING
                "Minimum OS X version to target for deployment (at runtime); newer APIs weak linked. Set to empty string for default value.")
L
liaogang 已提交
35
        ENDIF()
L
liaogang 已提交
36
    ELSE(APPLE)
L
liaogang 已提交
37

L
liaogang 已提交
38 39 40 41 42 43 44 45
        IF(EXISTS "/etc/issue")
            FILE(READ "/etc/issue" LINUX_ISSUE)
            IF(LINUX_ISSUE MATCHES "CentOS")
                SET(HOST_SYSTEM "centos")
            ELSEIF(LINUX_ISSUE MATCHES "Debian")
                SET(HOST_SYSTEM "debian")
            ELSEIF(LINUX_ISSUE MATCHES "Ubuntu")
                SET(HOST_SYSTEM "ubuntu")
46 47 48 49
            ELSEIF(LINUX_ISSUE MATCHES "Red Hat")
                SET(HOST_SYSTEM "redhat")
            ELSEIF(LINUX_ISSUE MATCHES "Fedora")
                SET(HOST_SYSTEM "fedora")
L
liaogang 已提交
50 51
            ENDIF()
        ENDIF(EXISTS "/etc/issue")
L
liaogang 已提交
52 53 54 55 56 57 58 59

        IF(EXISTS "/etc/redhat-release")
            FILE(READ "/etc/redhat-release" LINUX_ISSUE)
            IF(LINUX_ISSUE MATCHES "CentOS")
                SET(HOST_SYSTEM "centos")
            ENDIF()
        ENDIF(EXISTS "/etc/redhat-release")

60
        IF(NOT HOST_SYSTEM)
L
liaogang 已提交
61
            SET(HOST_SYSTEM ${CMAKE_SYSTEM_NAME})
62 63
        ENDIF()

L
liaogang 已提交
64 65 66 67 68 69 70 71 72 73 74
    ENDIF(APPLE)
ENDIF(WIN32)

# query number of logical cores
CMAKE_HOST_SYSTEM_INFORMATION(RESULT CPU_CORES QUERY NUMBER_OF_LOGICAL_CORES)

MARK_AS_ADVANCED(HOST_SYSTEM CPU_CORES)

MESSAGE(STATUS "Found Paddle host system: ${HOST_SYSTEM}")
MESSAGE(STATUS "Found Paddle host system's CPU: ${CPU_CORES} cores")

75
# configuration for cross-compiling
76 77 78
IF(DEFINED CMAKE_SYSTEM_NAME)
    IF(${CMAKE_SYSTEM_NAME} STREQUAL "Android")
        SET(ANDROID TRUE)
79
        INCLUDE(cross_compiling/android)
80 81 82
    ENDIF()
ENDIF()

83
# prefix and suffix on different os
84
IF(WIN32)
85
    SET(LIBRARY_PREFIX "")
86 87 88 89
    SET(SHARED_LIBRARY_SUFFIX ".dll")
    SET(STATIC_LIBRARY_SUFFIX ".lib")
    SET(EXECUTABLE_SUFFIX ".exe")
ELSE(WIN32)
90
    SET(LIBRARY_PREFIX "lib")
91 92 93 94 95 96 97 98 99 100
    IF(APPLE)
        SET(SHARED_LIBRARY_SUFFIX ".dylib")
    ELSE(APPLE)
        SET(SHARED_LIBRARY_SUFFIX ".so")
    ENDIF(APPLE)

    SET(STATIC_LIBRARY_SUFFIX ".a")
    SET(EXECUTABLE_SUFFIX "")
ENDIF(WIN32)

L
liaogang 已提交
101 102 103 104 105
# external dependencies log output
SET(EXTERNAL_PROJECT_LOG_ARGS
    LOG_DOWNLOAD    0     # Wrap download in script to log output
    LOG_UPDATE      1     # Wrap update in script to log output
    LOG_CONFIGURE   1     # Wrap configure in script to log output
L
liaogang 已提交
106
    LOG_BUILD       0     # Wrap build in script to log output
L
liaogang 已提交
107
    LOG_TEST        1     # Wrap test in script to log output
L
liaogang 已提交
108
    LOG_INSTALL     0     # Wrap install in script to log output
L
liaogang 已提交
109
)