diff --git a/samples/wasm-lua-comparison/CMakeLists.txt b/samples/wasm-lua-comparison/CMakeLists.txt index b16fc06d3..c5a259e6b 100644 --- a/samples/wasm-lua-comparison/CMakeLists.txt +++ b/samples/wasm-lua-comparison/CMakeLists.txt @@ -60,8 +60,9 @@ set(WAMR_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR}/../..) include (${WAMR_ROOT_DIR}/build-scripts/runtime_lib.cmake) add_library(vmlib ${WAMR_RUNTIME_LIB_SOURCE}) -################################################ +################ Lua application ################# +find_package(Lua REQUIRED) ################ wasm application ################ add_subdirectory(wasm-apps) @@ -72,9 +73,9 @@ include_directories(include) set (RUNTIME_SOURCE_ALL ${CMAKE_CURRENT_LIST_DIR}/src/main.c - ${CMAKE_CURRENT_LIST_DIR}/src/lua.c + ${CMAKE_CURRENT_LIST_DIR}/src/luaModule.c ${CMAKE_CURRENT_LIST_DIR}/src/wasm.c ${UNCOMMON_SHARED_SOURCE} ) add_executable (comparison ${RUNTIME_SOURCE_ALL}) -target_link_libraries(comparison vmlib -lpthread -lm) +target_link_libraries(comparison vmlib -lpthread -lm ${LUA_LIBRARIES}) diff --git a/samples/wasm-lua-comparison/include/lua.h b/samples/wasm-lua-comparison/include/luaModule.h similarity index 100% rename from samples/wasm-lua-comparison/include/lua.h rename to samples/wasm-lua-comparison/include/luaModule.h diff --git a/samples/wasm-lua-comparison/src/Makefile b/samples/wasm-lua-comparison/src/Makefile deleted file mode 100644 index d110cf688..000000000 --- a/samples/wasm-lua-comparison/src/Makefile +++ /dev/null @@ -1,1271 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.23 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." - /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/CMakeFiles /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named vmlib - -# Build rule for target. -vmlib: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 vmlib -.PHONY : vmlib - -# fast build rule for target. -vmlib/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/build -.PHONY : vmlib/fast - -#============================================================================= -# Target rules for targets named comparison - -# Build rule for target. -comparison: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 comparison -.PHONY : comparison - -# fast build rule for target. -comparison/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/build -.PHONY : comparison/fast - -#============================================================================= -# Target rules for targets named test.wasm - -# Build rule for target. -test.wasm: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test.wasm -.PHONY : test.wasm - -# fast build rule for target. -test.wasm/fast: - $(MAKE) $(MAKESILENT) -f wasm-apps/CMakeFiles/test.wasm.dir/build.make wasm-apps/CMakeFiles/test.wasm.dir/build -.PHONY : test.wasm/fast - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.o: home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.o: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.i: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.s: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.o: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.i: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.s: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.o: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.i: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.s: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.o: home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.i: home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.s: home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.o: home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.i: home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.s: home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.o: home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.i: home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i - -home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.s: home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i - -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i - -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s - -home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.o: home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o - -home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.i: home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i - -home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.s: home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.o: home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.i: home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.s: home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.o: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.i: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.s: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s - -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.o: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.o - -# target to build an object file -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o - -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.i: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.i - -# target to preprocess a source file -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i - -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.s: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.s - -# target to generate assembly for a file -home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s -.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s - -lua.o: lua.c.o -.PHONY : lua.o - -# target to build an object file -lua.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/lua.c.o -.PHONY : lua.c.o - -lua.i: lua.c.i -.PHONY : lua.i - -# target to preprocess a source file -lua.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/lua.c.i -.PHONY : lua.c.i - -lua.s: lua.c.s -.PHONY : lua.s - -# target to generate assembly for a file -lua.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/lua.c.s -.PHONY : lua.c.s - -main.o: main.c.o -.PHONY : main.o - -# target to build an object file -main.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/main.c.o -.PHONY : main.c.o - -main.i: main.c.i -.PHONY : main.i - -# target to preprocess a source file -main.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/main.c.i -.PHONY : main.c.i - -main.s: main.c.s -.PHONY : main.s - -# target to generate assembly for a file -main.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/main.c.s -.PHONY : main.c.s - -wasm.o: wasm.c.o -.PHONY : wasm.o - -# target to build an object file -wasm.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/wasm.c.o -.PHONY : wasm.c.o - -wasm.i: wasm.c.i -.PHONY : wasm.i - -# target to preprocess a source file -wasm.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/wasm.c.i -.PHONY : wasm.c.i - -wasm.s: wasm.c.s -.PHONY : wasm.s - -# target to generate assembly for a file -wasm.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/wasm.c.s -.PHONY : wasm.c.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... rebuild_cache" - @echo "... comparison" - @echo "... test.wasm" - @echo "... vmlib" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.s" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.o" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.i" - @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.s" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.o" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.i" - @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.s" - @echo "... lua.o" - @echo "... lua.i" - @echo "... lua.s" - @echo "... main.o" - @echo "... main.i" - @echo "... main.s" - @echo "... wasm.o" - @echo "... wasm.i" - @echo "... wasm.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/samples/wasm-lua-comparison/src/lua.c b/samples/wasm-lua-comparison/src/luaModule.c similarity index 74% rename from samples/wasm-lua-comparison/src/lua.c rename to samples/wasm-lua-comparison/src/luaModule.c index ec76241ad..51da187f9 100644 --- a/samples/wasm-lua-comparison/src/lua.c +++ b/samples/wasm-lua-comparison/src/luaModule.c @@ -1,7 +1,11 @@ -#include "lua.h" -//#include "/usr/local/include/lauxlib.h" -//#include "/usr/local/include/lualib.h" -#include "/usr/local/include/lua.hpp" + + +#include +#include + +#include +#include +#include #define THREAD_NUM 10 diff --git a/samples/wasm-lua-comparison/src/main.c b/samples/wasm-lua-comparison/src/main.c index 8a1883f8b..51a39428c 100644 --- a/samples/wasm-lua-comparison/src/main.c +++ b/samples/wasm-lua-comparison/src/main.c @@ -3,14 +3,20 @@ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ +#include +#include + #include "wasm_export.h" #include "bh_read_file.h" #include "pthread.h" + +// Include Lua Library #include "lua.h" +#include +#include + +#include "luaModule.h" #include "wasm.h" -//#include "/usr/local/include/lauxlib.h" -//#include "/usr/local/include/lualib.h" -#include "/usr/local/include/lua.hpp" int main(int argc, char *argv[])