blob: 4b5a62b0ef9cc0734e7febfb4fedde0e72a2a7b1 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001#----------------------------------------------------------------------------
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#----------------------------------------------------------------------------
17set(CMAKE_CXX_COMPILER g++)
18set(CMAKE_C_COMPILER gcc)
19set(CMAKE_C_LINKER_PREFERENCE gcc)
20set(CMAKE_CXX_LINKER_PREFERENCE gcc)
21
alexander3c798932021-03-26 21:42:19 +000022# Platform specific directory:
23set(PLATFORM_HAL 3)
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010024
25# Warning compiler definitions:
26add_compile_options(
27 -Wsign-compare
28 -Wshadow
29 -Wextra
30 -Wall
31 -Wunused-function
32 -Wmissing-field-initializers
33 -Wswitch
34 -Wvla
35 -Wunused-parameter)
36
37# General purpose compile definitions:
38add_compile_options(
39 -fPIC
40 -pthread
41 -DPLATFORM_HAL=${PLATFORM_HAL}
42 "$<$<COMPILE_LANGUAGE:CXX>:-fno-threadsafe-statics>")
43
44# Linker options
45add_link_options(
46 -lm
47 -lc
48 -lstdc++
49 --verbose)
alexander3c798932021-03-26 21:42:19 +000050
51function(enforce_compiler_version)
52endfunction()