mirror of
https://github.com/apache/nuttx.git
synced 2026-08-28 12:50:36 +00:00
Bringing the code coverage option when linking may cause gcc or g++ to automatically link the libgcov.a that comes with the toolchain. Signed-off-by: wangmingrong1 <wangmingrong1@xiaomi.com>
37 lines
1.5 KiB
CMake
37 lines
1.5 KiB
CMake
# ##############################################################################
|
|
# libs/libbuiltin/libgcc/CMakeLists.txt
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
|
# license agreements. See the NOTICE file distributed with this work for
|
|
# additional information regarding copyright ownership. The ASF licenses this
|
|
# file to you 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.
|
|
#
|
|
# ##############################################################################
|
|
|
|
if(CONFIG_PROFILE_MINI)
|
|
nuttx_add_system_library(libprofile)
|
|
target_sources(libprofile PRIVATE profile.c)
|
|
endif()
|
|
|
|
if(CONFIG_COVERAGE_MINI AND CONFIG_ARCH_TOOLCHAIN_GCC)
|
|
nuttx_add_system_library(libcoverage)
|
|
target_compile_options(
|
|
libcoverage PRIVATE -fno-profile-arcs -fno-test-coverage
|
|
-fno-stack-protector)
|
|
|
|
list(REMOVE_ITEM NUTTX_EXTRA_FLAGS "-fprofile-arcs" "-ftest-coverage"
|
|
"-fno-inline")
|
|
set_property(GLOBAL PROPERTY NUTTX_EXTRA_FLAGS ${NUTTX_EXTRA_FLAGS})
|
|
|
|
target_sources(libcoverage PRIVATE gcov.c)
|
|
endif()
|