forked from jerryscript-project/iotjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
169 lines (142 loc) · 5.24 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# Copyright 2015-present Samsung Electronics Co., Ltd. and other contributors
#
# 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.
cmake_minimum_required(VERSION 2.8)
project(IOTJS C)
set(IOTJS_VERSION_MAJOR 1)
set(IOTJS_VERSION_MINOR 0)
# Do a few default checks
if(NOT DEFINED PLATFORM_DESCRIPTOR)
message(FATAL_ERROR "No PLATFORM_DESCRIPTOR specified (format: <arch>-<os>)")
endif()
string(REPLACE "-" ";" PLATFORM_ARGS ${PLATFORM_DESCRIPTOR})
if(NOT DEFINED TARGET_OS)
list(GET PLATFORM_ARGS 1 TARGET_OS)
message(
"TARGET_OS not specified, using '${TARGET_OS}' from PLATFORM_DESCRIPTOR")
endif()
if(NOT CMAKE_BUILD_TYPE)
message("CMAKE_BUILD_TYPE was not set! Configuring for Debug build!")
set(CMAKE_BUILD_TYPE Debug)
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
message("CMAKE_BUILD_TYPE was set to Release, switching to MinSizeRel")
set(CMAKE_BUILD_TYPE MinSizeRel)
endif()
if(NOT DEFINED BUILD_LIB_ONLY)
set(BUILD_LIB_ONLY OFF)
endif()
if(NOT DEFINED ENABLE_SNAPSHOT)
message("Snapshot mode force enabled")
set(ENABLE_SNAPSHOT ON)
endif()
if(NOT DEFINED ENABLE_LTO)
message("LTO force disabled")
set(ENABLE_LTO OFF)
endif()
macro(iotjs_add_flags VAR)
foreach(_flag ${ARGN})
set(${VAR} "${${VAR}} ${_flag}")
endforeach()
endmacro()
macro(iotjs_add_compile_flags)
iotjs_add_flags(CMAKE_C_FLAGS ${ARGV})
endmacro()
macro(iotjs_add_link_flags)
iotjs_add_flags(IOTJS_LINKER_FLAGS ${ARGV})
endmacro()
# Add buildtype-related flags
if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
iotjs_add_compile_flags(-DDEBUG -DENABLE_DEBUG_LOG)
endif()
if(EXPERIMENTAL)
iotjs_add_compile_flags(-DEXPERIMENTAL)
endif()
# Add arch-dependant flags
if("${TARGET_ARCH}" STREQUAL "arm")
iotjs_add_compile_flags(-D__arm__ -mthumb -fno-short-enums -mlittle-endian)
elseif("${TARGET_ARCH}" STREQUAL "i686")
iotjs_add_compile_flags(-D__i686__ -D__x86__ -march=i686 -m32)
elseif("${TARGET_ARCH}" STREQUAL "x86_64")
iotjs_add_compile_flags(-D__x86_64__)
elseif("${TARGET_ARCH}" STREQUAL "mips")
message("MIPS support is experimental!")
if(NOT EXPERIMENTAL)
message(FATAL_ERROR "Missing --experimental build option for MIPS!")
endif()
if(ENABLE_SNAPSHOT)
message(FATAL_ERROR "Cross endian snapshots are not supported. "
"Please disable snapshot mode for mips!")
endif()
elseif("${TARGET_ARCH}" STREQUAL "noarch")
else()
message(WARNING "Unknown target arch: ${TARGET_ARCH}.")
endif()
# Add board-dependant flags
iotjs_add_compile_flags(-DTARGET_BOARD=${TARGET_BOARD})
if("${TARGET_BOARD}" STREQUAL "artik05x")
iotjs_add_compile_flags(-mcpu=cortex-r4 -mfpu=vfp3)
elseif("${TARGET_BOARD}" STREQUAL "artik10")
iotjs_add_compile_flags(-mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=softfp)
elseif("${TARGET_BOARD}" STREQUAL "rpi2")
iotjs_add_compile_flags(-mcpu=cortex-a7 -mfpu=neon-vfpv4)
elseif("${TARGET_BOARD}" STREQUAL "rpi3")
if("${TARGET_OS}" STREQUAL "tizen")
iotjs_add_compile_flags(-mfpu=neon-vfpv4 -mfloat-abi=softfp)
endif()
elseif("${TARGET_BOARD}" STREQUAL "stm32f4dis")
iotjs_add_compile_flags(-mcpu=cortex-m4 -march=armv7e-m -mfpu=fpv4-sp-d16)
iotjs_add_compile_flags(-mfloat-abi=hard)
endif()
# Add os-dependant flags
if("${TARGET_OS}" STREQUAL "darwin")
iotjs_add_compile_flags(-D__DARWIN__ -fno-builtin)
elseif("${TARGET_OS}" STREQUAL "linux")
iotjs_add_compile_flags(-D__LINUX__ -fno-builtin -rdynamic)
iotjs_add_link_flags(-pthread)
iotjs_add_flags(EXTERNAL_LIBS m rt)
elseif("${TARGET_OS}" STREQUAL "nuttx")
iotjs_add_compile_flags(-D__NUTTX__ -Os -fno-strict-aliasing)
iotjs_add_compile_flags(-fno-strength-reduce -fomit-frame-pointer)
elseif("${TARGET_OS}" STREQUAL "tizen")
iotjs_add_compile_flags(-D__TIZEN__ -fno-builtin -rdynamic)
iotjs_add_link_flags(-pthread)
iotjs_add_flags(EXTERNAL_LIBS m rt)
elseif("${TARGET_OS}" STREQUAL "tizenrt")
iotjs_add_compile_flags(-D__TIZENRT__ -Os -fno-strict-aliasing)
iotjs_add_compile_flags(-fno-strength-reduce -fomit-frame-pointer)
elseif("${TARGET_OS}" STREQUAL "openwrt")
message("OpenWrt support is experimental!")
if(NOT EXPERIMENTAL)
message(FATAL_ERROR "Missing --experimental build option for OpenWrt!")
endif()
iotjs_add_compile_flags(-D__OPENWRT__ -D_GNU_SOURCE)
iotjs_add_link_flags(-pthread)
else()
message(WARNING "Unknown target os: ${TARGET_OS}.")
endif()
# Add external options
if(DEFINED EXTERNAL_COMPILE_FLAGS)
iotjs_add_compile_flags(${EXTERNAL_COMPILE_FLAGS})
endif()
if(DEFINED EXTERNAL_LINKER_FLAGS)
iotjs_add_link_flags(${EXTERNAL_LINKER_FLAGS})
endif()
string(TOUPPER "${TARGET_OS}" TARGET_OS)
set(ROOT_DIR ${CMAKE_SOURCE_DIR})
set(ARCHIVE_DIR ${CMAKE_BINARY_DIR}/lib)
include(ExternalProject)
# Include external projects
include(cmake/jerry.cmake)
include(cmake/http-parser.cmake)
include(cmake/libtuv.cmake)
include(cmake/iotjs.cmake)