mirror of
https://gitee.com/openharmony/arkcompiler_runtime_core
synced 2025-04-07 20:52:04 +00:00

Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/I5G96F Test: Test262 suit, ark unittest, rk3568 XTS, ark previewer demo Signed-off-by: huangyu <huangyu76@huawei.com> Change-Id: I3f63d129a07deaa27a390f556dcaa5651c098185
34 lines
1.4 KiB
CMake
34 lines
1.4 KiB
CMake
# Copyright (c) 2021-2022 Huawei Device Co., Ltd.
|
|
# 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.
|
|
|
|
# This target is to collect coverage after fuzzing on special fuzzing targets
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/common.cmake)
|
|
|
|
set_c_compiler(clang-9)
|
|
set_cxx_compiler(clang++-9)
|
|
|
|
add_definitions(-DFUZZING_EXIT_ON_FAILED_ASSERT=1)
|
|
add_definitions(-DFUZZING_EXIT_ON_FAILED_ASSERT_FOR="/libpandafile/,/libpandabase/")
|
|
|
|
set(PANDA_ENABLE_CLANG_TIDY false CACHE BOOL "Enable clang-tidy checks during compilation" FORCE)
|
|
set(PANDA_BUILD_FUZZ_TARGETS true)
|
|
set(PANDA_FUZZING_SANITIZERS false)
|
|
set(PANDA_AFL_COVERAGE true)
|
|
set(PANDA_WITH_TESTS false)
|
|
set(PANDA_WITH_BENCHMARKS false)
|
|
|
|
set(PANDA_CLANG_COVERAGE_FLAGS "-fprofile-instr-generate -fcoverage-mapping -gline-tables-only")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${PANDA_CLANG_COVERAGE_FLAGS} -Wno-return-stack-address -Wno-unused-variable")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${PANDA_CLANG_COVERAGE_FLAGS}")
|