| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Copyright (C) 2019 Intel Corporation. All rights reserved.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- cmake_minimum_required(VERSION 3.14)
- project (test-linux-perf)
- add_definitions (-DRUN_ON_LINUX)
- set (WAMR_BUILD_LIBC_WASI 0)
- set (WAMR_BUILD_LIBC_BUILTIN 0)
- set (WAMR_BUILD_JIT 0)
- set (WAMR_BUILD_AOT 1)
- set (WAMR_BUILD_FAST_INTERP 0)
- set (WAMR_BUILD_INTERP 1)
- set (WAMR_BUILD_MULTI_MODULE 0)
- set (WAMR_BUILD_LINUX_PERF 1)
- add_definitions(-DWASM_ENABLE_WAMR_COMPILER=1)
- # Feature to test
- set (WAMR_BUILD_DUMP_CALL_STACK 1)
- include (../unit_common.cmake)
- find_package(LLVM REQUIRED CONFIG)
- include_directories(${LLVM_INCLUDE_DIRS})
- add_definitions(${LLVM_DEFINITIONS})
- include (${IWASM_DIR}/compilation/iwasm_compl.cmake)
- add_executable (linux_perf_test test_sort_func_ptrs.cc)
- target_compile_options(linux_perf_test PUBLIC -fpermissive)
- target_link_libraries(linux_perf_test ${LLVM_AVAILABLE_LIBS} gtest_main )
- target_link_options(linux_perf_test
- PUBLIC
- LINKER:--unresolved-symbols=ignore-all
- )
- gtest_discover_tests(linux_perf_test)
|