parent
41d2e33954
commit
20fca998c9
1 changed files with 36 additions and 0 deletions
@ -0,0 +1,36 @@ |
||||
package("sse2neon") |
||||
set_kind("library", {headeronly = true}) |
||||
set_homepage("https://github.com/DLTcollab/sse2neon") |
||||
set_description("A translator from Intel SSE intrinsics to Arm/Aarch64 NEON implementation") |
||||
set_license("MIT") |
||||
|
||||
add_urls("https://github.com/DLTcollab/sse2neon/archive/refs/tags/$(version).tar.gz", |
||||
"https://github.com/DLTcollab/sse2neon.git") |
||||
|
||||
add_versions("v1.7.0", "cee6d54922dbc9d4fa57749e3e4b46161b7f435a22e592db9da008051806812a") |
||||
|
||||
if is_plat("windows") then |
||||
add_cxxflags("/Zc:preprocessor") |
||||
end |
||||
|
||||
on_check(function (package) |
||||
assert(package:is_arch("arm.*"), "package(sse2neon): only support arm") |
||||
if package:is_plat("windows") then |
||||
import("core.tool.toolchain") |
||||
|
||||
local msvc = toolchain.load("msvc", {plat = package:plat(), arch = package:arch()}) |
||||
if msvc then |
||||
local vs = msvc:config("vs") |
||||
assert(vs and tonumber(vs) >= 2022, "package(sse2neon): need vs >= 2022") |
||||
end |
||||
end |
||||
end) |
||||
|
||||
on_install("!cross", function (package) |
||||
assert(package:is_arch("arm.*"), "package(sse2neon): only support arm") |
||||
os.vcp("sse2neon.h", package:installdir("include")) |
||||
end) |
||||
|
||||
on_test(function (package) |
||||
assert(package:has_cxxincludes("sse2neon.h")) |
||||
end) |
Loading…
Reference in new issue