This commit is contained in:
Leonid Pospelov 2023-02-02 01:12:27 +06:00 коммит произвёл GitHub
Родитель 17030920aa
Коммит 3029a0e0ad
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 132 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,67 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO WasmEdge/WasmEdge
REF 0.12.0-alpha.1
SHA512 4218ecb6fba34b4ae94fc8c63b7da03c37f9dd2e404a9a6008be972a799b981929ada0ef213d8fababa25d10e27b777df66d22e1e61c92ff8e60b5e1caf97562
HEAD_REF master
)
set(WASMEDGE_CMAKE_OPTIONS "")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_BUILD_AOT_RUNTIME=OFF")
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_BUILD_STATIC_LIB=OFF")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_BUILD_SHARED_LIB=ON")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_LINK_LLVM_STATIC=OFF")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_LINK_TOOLS_STATIC=OFF")
else()
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_BUILD_STATIC_LIB=ON")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_BUILD_SHARED_LIB=OFF")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_LINK_LLVM_STATIC=ON")
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_LINK_TOOLS_STATIC=ON")
endif()
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
tools WASMEDGE_BUILD_TOOLS
aot WASMEDGE_BUILD_AOT_RUNTIME
plugins WASMEDGE_BUILD_PLUGINS
)
# disabled due to build failure
list(APPEND WASMEDGE_CMAKE_OPTIONS "-DWASMEDGE_BUILD_EXAMPLE=OFF")
set(WASMEDGE_PLUGIN_WASI_NN_BACKEND "")
if("plugin-wasi-nn-backend-openvino" IN_LIST FEATURES)
list(APPEND WASMEDGE_PLUGIN_WASI_NN_BACKEND "OpenVINO")
endif()
if("plugin-wasi-nn-backend-pytorch" IN_LIST FEATURES)
list(APPEND WASMEDGE_PLUGIN_WASI_NN_BACKEND "PyTorch")
endif()
if("plugin-wasi-nn-backend-tensorflow-lite" IN_LIST FEATURES)
list(APPEND WASMEDGE_PLUGIN_WASI_NN_BACKEND "TensorflowLite")
endif()
if(NOT WASMEDGE_PLUGIN_WASI_NN_BACKEND STREQUAL "")
list(JOIN WASMEDGE_PLUGIN_WASI_NN_BACKEND "," WASMEDGE_PLUGIN_WASI_NN_BACKEND)
list(APPEND WASMEDGE_CMAKE_OPTIONS "-WASMEDGE_PLUGIN_WASI_NN_BACKEND=${WASMEDGE_PLUGIN_WASI_NN_BACKEND}")
endif()
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
${WASMEDGE_CMAKE_OPTIONS}
${FEATURE_OPTIONS}
OPTIONS_RELEASE
-DCMAKE_INSTALL_BINDIR=${CURRENT_PACKAGES_DIR}/tools
OPTIONS_DEBUG
-DCMAKE_INSTALL_BINDIR=${CURRENT_PACKAGES_DIR}/debug/tools
)
vcpkg_cmake_install()
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")

52
ports/wasmedge/vcpkg.json Normal file
Просмотреть файл

@ -0,0 +1,52 @@
{
"name": "wasmedge",
"version-semver": "0.12.0-alpha.1",
"description": "WasmEdge is a high-performance WebAssembly runtime for edge computing.",
"homepage": "https://WasmEdge.org",
"license": "Apache-2.0",
"supports": "!windows",
"dependencies": [
"boost-algorithm",
"boost-align",
"boost-predef",
"spdlog",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"tools"
],
"features": {
"aot": {
"description": "Build with the Ahead-of-Time compiler supporting",
"dependencies": [
"llvm"
]
},
"plugin-wasi-nn-backend-openvino": {
"description": "Build the OpenVINO backend plugin for the WasmEdge WASI-NN extension",
"supports": "linux & !static"
},
"plugin-wasi-nn-backend-pytorch": {
"description": "Build the PyTorch backend plugin for the WasmEdge WASI-NN extension",
"supports": "linux & !static"
},
"plugin-wasi-nn-backend-tensorflowlite": {
"description": "Build the TensorFlow Lite backend plugin for the WasmEdge WASI-NN extension",
"supports": "linux & !static"
},
"plugins": {
"description": "Build plugins",
"supports": "!static"
},
"tools": {
"description": "Build tools"
}
}
}

Просмотреть файл

@ -8112,6 +8112,10 @@
"baseline": "2022.03.21.00",
"port-version": 0
},
"wasmedge": {
"baseline": "0.12.0-alpha.1",
"port-version": 0
},
"wavelib": {
"baseline": "2021-11-26",
"port-version": 0

Просмотреть файл

@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "8f45668b8b49bb5ac4cefd31ee7e41abddc15107",
"version-semver": "0.12.0-alpha.1",
"port-version": 0
}
]
}