-
I have this, and it seems to build: cmake_minimum_required (VERSION 3.14)
project(null0)
include(FetchContent)
string(TOLOWER ${CMAKE_HOST_SYSTEM_NAME} WAMR_BUILD_PLATFORM)
string(TOUPPER ${CMAKE_HOST_SYSTEM_PROCESSOR} WAMR_BUILD_TARGET)
set (WAMR_BUILD_INTERP 1)
set (WAMR_BUILD_FAST_INTERP 1)
set (WAMR_BUILD_AOT 1)
set (WAMR_BUILD_LIBC_BUILTIN 1)
set (WAMR_BUILD_LIBC_WASI 1)
set (WAMR_BUILD_SIMD 1)
set (WAMR_ROOT_DIR ${wamr_SOURCE_DIR})
FetchContent_Declare(
wamr
GIT_REPOSITORY [email protected]:bytecodealliance/wasm-micro-runtime.git
GIT_TAG main
)
FetchContent_MakeAvailable(wamr)
include (${wamr_SOURCE_DIR}/build-scripts/runtime_lib.cmake)
add_library(vmlib ${WAMR_RUNTIME_LIB_SOURCE}) I see build/libvmlib.a and if I do
Is there a way to disable that |
Beta Was this translation helpful? Give feedback.
Answered by
wenyongh
Oct 26, 2023
Replies: 1 comment
-
@konsumer The "--strip-all" flag should have been removed with PR #2669, please try again. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
konsumer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@konsumer The "--strip-all" flag should have been removed with PR #2669, please try again.