forked from ARM-software/bsa-acs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
134 lines (107 loc) · 4.47 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
## @file
# Copyright (c) 2023-2024, Arm Limited or its affiliates. All rights reserved.
# SPDX-License-Identifier : Apache-2.0
#
# 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.
##
# Set the minimum required version of CMake for the project
cmake_minimum_required(VERSION 3.17)
project(bsa-acs LANGUAGES)
# cmake_policy
cmake_policy(SET CMP0001 NEW)
### Tool dependency check - end ###
get_filename_component(ROOT_DIR . ABSOLUTE)
# Set internal build directory variable
set(BUILD ${CMAKE_CURRENT_BINARY_DIR} CACHE INTERNAL "Setting build directory to ${BUILD}" FORCE)
file(MAKE_DIRECTORY ${BUILD}/output/)
# Set global compile list variable
set(COMPILE_LIST "")
#### Include cmake support module ###
include(${ROOT_DIR}/tools/cmake/toolchain/utils.cmake)
include(${ROOT_DIR}/tools/cmake/toolchain/default.cmake)
####
### Valid value range for command line argument ###
list(APPEND ARM_ARCH_MAJOR_LIST 8 9)
list(APPEND ACS_LIST "bsa" "sbsa")
###
# Check while ACS we are compiling. BSA/ SBSA.
if(NOT DEFINED ACS)
set(ACS ${ACS_DFLT} CACHE INTERNAL "Defaulting ACS to ${ACS}" FORCE)
else()
set(ACS ${ACS} CACHE INTERNAL "ACS is set to ${ACS}" FORCE)
endif()
if(NOT ${ACS} IN_LIST ACS_LIST)
message(FATAL_ERROR "[ACS] : Error: Unspported value for -DACS=, supported ACS are : ${ACS_LIST}")
else()
message(STATUS "[ACS] : ACS is set to ${ACS}")
endif()
if(ACS MATCHES "sbsa")
if(NOT DEFINED SBSA_DIR)
set(SBSA_DIR ${SBSA_DIR_DFLT} CACHE INTERNAL "Defaulting SBSA_DIR to ${SBSA_DIR}" FORCE)
else()
set(SBSA_DIR ${SBSA_DIR} CACHE INTERNAL "SBSA_DIR is set to ${SBSA_DIR}" FORCE)
endif()
message(STATUS "[ACS] : SBSA_DIR is set to ${SBSA_DIR}")
endif()
# Check for valid targets
_get_sub_dir_list(TARGET_LIST ${ROOT_DIR}/pal/baremetal/target/)
if(NOT DEFINED TARGET)
set(TARGET ${TARGET_DFLT} CACHE INTERNAL "Defaulting target to ${TARGET}" FORCE)
else()
set(TARGET ${TARGET} CACHE INTERNAL "TARGET is set to ${TARGET}" FORCE)
endif()
if(NOT ${TARGET} IN_LIST TARGET_LIST)
message(FATAL_ERROR "[ACS] : Error: Unspported value for -DTARGET=, supported targets are : ${TARGET_LIST}")
else()
message(STATUS "[ACS] : TARGET is set to ${TARGET}")
endif()
# Check for ARM_ARCH_MAJOR
if(NOT DEFINED ARM_ARCH_MAJOR)
set(ARM_ARCH_MAJOR "${ARM_ARCH_MAJOR_DFLT}" CACHE INTERNAL "Default ARM_ARCH_MAJOR value" FORCE)
message(STATUS "[ACS] : Defaulting ARM_ARCH_MAJOR to ${ARM_ARCH_MAJOR}")
else()
if(NOT ${ARM_ARCH_MAJOR} IN_LIST ARM_ARCH_MAJOR_LIST)
message(FATAL_ERROR "[ACS] : Error: Unspported value for -DARM_ARCH_MAJOR=, supported values are : ${ARM_ARCH_MAJOR_LIST}")
endif()
message(STATUS "[ACS] : ARM_ARCH_MAJOR is set to ${ARM_ARCH_MAJOR}")
endif()
# Check for ARM_ARCH_MINOR
if(NOT DEFINED ARM_ARCH_MINOR)
set(ARM_ARCH_MINOR "${ARM_ARCH_MINOR_DFLT}" CACHE INTERNAL "Default ARM_ARCH_MINOR value" FORCE)
message(STATUS "[ACS] : Defaulting ARM_ARCH_MINOR to ${ARM_ARCH_MINOR}")
else()
message(STATUS "[ACS] : ARM_ARCH_MINOR is set to ${ARM_ARCH_MINOR}")
endif()
# Setup toolchain parameters for compilation and link
include(${ROOT_DIR}/tools/cmake/toolchain/common.cmake)
### Cmake clean target ###
list(APPEND CLEAN_LIST
${CMAKE_CURRENT_BINARY_DIR}/${OUTPUT_HEADER}
${CMAKE_CURRENT_BINARY_DIR}/output
)
# Include the files for make clean
foreach(clean_item ${CLEAN_LIST})
set_property(DIRECTORY APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${clean_item})
endforeach()
###
if(ACS MATCHES "sbsa")
add_subdirectory(${ROOT_DIR}/tools/cmake/sbsa)
elseif(ACS MATCHES "bsa")
add_subdirectory(${ROOT_DIR}/tools/cmake/bsa)
endif()
### Throw waring for the files which is not compiled ###
# list(REMOVE_DUPLICATES COMPILE_LIST)
# execute_process(COMMAND python ${ROOT_DIR}/tools/scripts/compile_check.py "${COMPILE_LIST}" "${ROOT_DIR}" "${TARGET}" OUTPUT_VARIABLE NOT_COMPILED_FILES)
# if(NOT ${NOT_COMPILED_FILES} MATCHES NULL)
# message(WARNING "Following files are not compiled ${NOT_COMPILED_FILES}")
# endif()