blob: 150a59bf632b0796c05c04cd7406e5e856c07b78 [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
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010022# Warning compiler definitions:
23add_compile_options(
24 -Wsign-compare
25 -Wshadow
26 -Wextra
27 -Wall
28 -Wunused-function
29 -Wmissing-field-initializers
30 -Wswitch
31 -Wvla
32 -Wunused-parameter)
33
34# General purpose compile definitions:
35add_compile_options(
36 -fPIC
37 -pthread
Kshitij Sisodiaf9c19ea2021-05-07 16:08:14 +010038 "$<$<COMPILE_LANGUAGE:CXX>:-fno-threadsafe-statics>")
39
40# Linker options
41add_link_options(
42 -lm
43 -lc
44 -lstdc++
45 --verbose)
alexander3c798932021-03-26 21:42:19 +000046
47function(enforce_compiler_version)
48endfunction()