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
IF(WIN32)
    SET(HOST_SYSTEM "win32")
ELSE(WIN32)
    IF(APPLE)
        SET(HOST_SYSTEM "macosx")
28 29 30
        EXEC_PROGRAM(sw_vers ARGS -productVersion OUTPUT_VARIABLE HOST_SYSTEM_VERSION)
        STRING(REGEX MATCH "[0-9]+.[0-9]+" MACOS_VERSION "${HOST_SYSTEM_VERSION}")
        IF(NOT DEFINED $ENV{MACOSX_DEPLOYMENT_TARGET})
L
liaogang 已提交
31 32 33
            # 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 已提交
34
        ENDIF()
L
liaogang 已提交
35
        set(CMAKE_EXE_LINKER_FLAGS "-framework CoreFoundation -framework Security")
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
            ENDIF()
51 52

            STRING(REGEX MATCH "(([0-9]+)\\.)+([0-9]+)" HOST_SYSTEM_VERSION "${LINUX_ISSUE}")
L
liaogang 已提交
53
        ENDIF(EXISTS "/etc/issue")
L
liaogang 已提交
54 55 56 57 58 59 60 61

        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")

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

L
liaogang 已提交
66 67 68 69 70 71 72 73
    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)

74
MESSAGE(STATUS "Found Paddle host system: ${HOST_SYSTEM}, version: ${HOST_SYSTEM_VERSION}")
L
liaogang 已提交
75 76
MESSAGE(STATUS "Found Paddle host system's CPU: ${CPU_CORES} cores")

77
# configuration for cross-compiling
78
IF(DEFINED CMAKE_SYSTEM_NAME)
79
    INCLUDE(cross_compiling/host)
80 81
    IF(${CMAKE_SYSTEM_NAME} STREQUAL "Android")
        SET(ANDROID TRUE)
82
        INCLUDE(cross_compiling/android)
L
Liu Yiqun 已提交
83 84 85
    ELSEIF(${CMAKE_SYSTEM_NAME} STREQUAL "RPi")
        SET(RPI TRUE)
        INCLUDE(cross_compiling/raspberry_pi)
86
    ELSEIF(${CMAKE_SYSTEM_NAME} STREQUAL "iOS")
Z
zlx 已提交
87 88
        SET(IOS TRUE)
        INCLUDE(cross_compiling/ios)
89 90 91
    ENDIF()
ENDIF()

L
liaogang 已提交
92 93 94 95 96
# 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 已提交
97
    LOG_BUILD       0     # Wrap build in script to log output
L
liaogang 已提交
98
    LOG_TEST        1     # Wrap test in script to log output
L
liaogang 已提交
99
    LOG_INSTALL     0     # Wrap install in script to log output
L
liaogang 已提交
100
)