123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- package("v8")
- set_homepage("https://v8.dev")
- set_description("V8 JavaScript Engine")
- add_urls("https://github.com/v8/v8.git")
- add_versions("13.5.212.10", "e2591684c45463aa1e46ebefc3fd35deee63f37c")
- add_deps("depot_tools")
- if is_plat("linux", "bsd") then
- add_syslinks("pthread", "dl")
- elseif is_plat("windows") then
- add_syslinks("user32", "winmm", "advapi32", "dbghelp", "shlwapi")
- add_configs("runtimes", {description = "Set runtime.", default = "MT", readonly = true})
- end
- add_includedirs("include")
- add_links("v8_monolith")
- on_check(function (package)
- local is_release = not package:is_debug()
- local is_static = not package:config("shared")
- local is_arm64 = package:is_arch("arm64")
- -- Require C++20
- assert(package:check_cxxsnippets({test = [[
- #include <cstddef>
- #include <iterator>
- struct SimpleInputIterator {
- using difference_type = std::ptrdiff_t;
- using value_type = int;
- int operator*() const;
- SimpleInputIterator& operator++();
- void operator++(int) { ++*this; }
- };
- static_assert(std::input_iterator<SimpleInputIterator>);
- ]]}, {configs = {languages = "c++20"}}), "package(v8): require at least C++20.")
- -- Only configured and tested for:
- assert(is_release and is_static, "package(v8): only configured for static + release usage.")
- if package:is_plat("windows") then
- -- Require MSVC / Visual Studio 2022
- local msvc = package:toolchain("msvc")
- if msvc then
- local vs = msvc:config("vs")
- local year = tonumber(vs)
- assert(year >= 2022, "package(v8): require at least Visual Studio 2022.")
- else
- assert(false, "package(v8): only configured for MSVC on Windows.")
- end
- local is_win11 = winos.version():ge("10.0.22000+194")
- assert(not (is_win11 and is_arm64), "package(v8): Windows 11 arm64 is not supported.")
- elseif package:is_plat("linux") then
- local distrib = linuxos.name()
- assert(distrib ~= "archlinux", "package(v8): Archlinux is not supported.")
- assert(distrib ~= "fedora", "package(v8): Fedora is not supported.")
- assert(not is_arm64, "package(v8): Linux arm64 is not supported.")
- end
- end)
- on_install("linux", "windows", function (package)
- import("core.base.global")
- -- maybe we need set proxy, e.g. `xmake g --proxy=http://127.0.0.1:xxxx`
- local envs = {}
- local proxy = global.get("proxy")
- if proxy then
- envs.HTTP_PROXY = proxy
- envs.HTTPS_PROXY = proxy
- envs.ALL_PROXY = proxy
- end
- io.writefile(".gclient", [=[solutions = [
- {
- "name": ".",
- "url": "https://github.com/v8/v8.git",
- "deps_file": "DEPS",
- "managed": False,
- "custom_deps": {},
- }]]=])
- if package:is_plat("windows") then
- envs.DEPOT_TOOLS_WIN_TOOLCHAIN = "0"
- envs.GYP_MSVS_VERSION = "2022"
- end
- local gclient = package:is_plat("windows") and "gclient.bat" or "gclient"
- -- A Git account needs to be configured
- os.vrunv("git", {"config", "user.email", "[email protected]"})
- os.vrunv("git", {"config", "user.name", "Dummy Dummy"})
- -- Prevent long path issue on Windows
- os.vrunv("git", {"config", "--local", "core.longpaths", "true"})
- -- Update repository and dependencies
- -- Clean any local changes to apply patches
- os.vrunv(gclient, {"sync", "-v"}, {envs = envs})
- -- Setup args.gn
- local configs = {
- is_official_build = false,
- is_component_build = false,
- is_debug = package:is_debug(),
- symbol_level = package:is_debug() and 2 or 0,
- strip_debug_info = not package:is_debug(),
- treat_warnings_as_errors = false,
- use_custom_libcxx = false,
- v8_monolithic = true,
- v8_enable_sandbox = false,
- v8_enable_pointer_compression = false,
- v8_enable_webassembly = false,
- v8_enable_gdbjit = package:is_debug(),
- v8_enable_i18n_support = false,
- v8_enable_test_features = false,
- v8_use_external_startup_data = false
- }
- if not package:is_plat("windows") then
- configs.is_clang = false
- end
- -- Build V8 library
- import("package.tools.gn").build(package, configs, {buildir = "out.gn", target = {"v8_monolith"}})
- -- Install headers and library files
- os.cp("include", package:installdir())
- os.trycp("out.gn/obj/*.a", package:installdir("lib"))
- os.trycp("out.gn/obj/*.lib", package:installdir("lib"))
- os.trycp("out.gn/obj/*.dll", package:installdir("bin"))
- end)
- on_test(function (package)
- local cxxflags = package:is_plat("windows") and "/Zc:__cplusplus" or ""
- assert(package:has_cxxfuncs("v8::V8::InitializePlatform(0)", {
- configs = {
- languages = "c++20",
- cxxflags = cxxflags
- },
- includes = "v8.h"
- }))
- end)
|