mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2026-04-19 10:32:58 +00:00
36 lines
985 B
CMake
36 lines
985 B
CMake
# 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(SYSTEM ${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 )
|
|
gtest_discover_tests(linux_perf_test)
|