blob: 2e28cd40fc195747de1abf5fd9a416158ee6a766 [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
22set(CMAKE_C_FLAGS_DEBUG "-DDEBUG -O0 -g")
23set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -O3")
24
25set(CMAKE_CXX_FLAGS_DEBUG "-DDEBUG -O0 -g")
26set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -O3")
27
28# Platform specific directory:
29set(PLATFORM_HAL 3)
30set(WARNING_FLAGS "-Wsign-compare -Wshadow \
31 -Wextra -Wall -Wunused-function \
32 -Wmissing-field-initializers \
33 -Wswitch -Wvla -Wunused-parameter")
34set(SPECIAL_OPTS "-fPIC -pthread")
35set(PLATFORM_FLAGS "-DPLATFORM_HAL=${PLATFORM_HAL}")
36set(SPECIAL_OPTS_CXX "-fno-threadsafe-statics")
37set(CMAKE_EXE_LINKER_FLAGS "-lm -lc -lstdc++ --verbose")
38
39function(enforce_compiler_version)
40endfunction()