mirror of
				https://github.com/bytecodealliance/wasm-micro-runtime.git
				synced 2025-10-31 21:27:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # Copyright (C) 2019 Intel Corporation.  All rights reserved.
 | |
| # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 | |
| 
 | |
| cmake_minimum_required(VERSION 2.9)
 | |
| 
 | |
| project (test-aot-stack-frame)
 | |
| 
 | |
| add_definitions (-DRUN_ON_LINUX)
 | |
| 
 | |
| set (WAMR_BUILD_AOT 1)
 | |
| set (WAMR_BUILD_INTERP 0)
 | |
| set (WAMR_BUILD_JIT 0)
 | |
| set (WAMR_BUILD_SIMD 1)
 | |
| set (WAMR_BUILD_REF_TYPES 1)
 | |
| set (WAMR_BUILD_LIBC_WASI 0)
 | |
| set (WAMR_BUILD_LIBC_BUILTIN 0)
 | |
| set (WAMR_BUILD_MULTI_MODULE 0)
 | |
| set (WAMR_DISABLE_HW_BOUND_CHECK 1)
 | |
| set (WAMR_DISABLE_WRITE_GS_BASE 1)
 | |
| 
 | |
| include (../unit_common.cmake)
 | |
| 
 | |
| include_directories (${CMAKE_CURRENT_SOURCE_DIR})
 | |
| 
 | |
| add_definitions (-DWASM_ENABLE_AOT_STACK_FRAME=1)
 | |
| add_definitions (-DAOT_STACK_FRAME_DEBUG)
 | |
| #add_definitions (-DWASM_ENABLE_DUMP_CALL_STACK=1)
 | |
| 
 | |
| file (GLOB_RECURSE source_all ${CMAKE_CURRENT_SOURCE_DIR}/*.cc)
 | |
| 
 | |
| set (UNIT_SOURCE ${source_all})
 | |
| 
 | |
| set (unit_test_sources
 | |
|      ${UNIT_SOURCE}
 | |
|      ${PLATFORM_SHARED_SOURCE}
 | |
|      ${UTILS_SHARED_SOURCE}
 | |
|      ${MEM_ALLOC_SHARED_SOURCE}
 | |
|      ${NATIVE_INTERFACE_SOURCE}
 | |
|      ${IWASM_COMMON_SOURCE}
 | |
|      ${IWASM_INTERP_SOURCE}
 | |
|      ${IWASM_AOT_SOURCE}
 | |
|      ${WASM_APP_LIB_SOURCE_ALL}
 | |
|     )
 | |
| 
 | |
| # Automatically build wasm-apps for this test
 | |
| add_subdirectory(wasm-apps)
 | |
| 
 | |
| # Now simply link against gtest or gtest_main as needed. Eg
 | |
| add_executable (aot_stack_frame_test ${unit_test_sources})
 | |
| 
 | |
| add_dependencies (aot_stack_frame_test aot-stack-frame-test-wasm)
 | |
| 
 | |
| target_link_libraries (aot_stack_frame_test ${LLVM_AVAILABLE_LIBS} gtest_main )
 | |
| 
 | |
| #gtest_discover_tests(aot_stack_frame_test) | 
