package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.8 KiB
68 lines
2.8 KiB
package("verilator") |
|
set_kind("toolchain") |
|
set_homepage("https://verilator.org") |
|
set_description("Verilator open-source SystemVerilog simulator and lint system") |
|
|
|
-- add_urls("https://github.com/verilator/verilator/archive/refs/tags/$(version).tar.gz") |
|
add_urls("https://github.com/verilator/verilator.git") |
|
add_versions("2023.1.10", "5fce23e90d2a721bb712dc9aacde594558489dda") |
|
|
|
-- wait for next release with cmake |
|
-- add_versions("v5.004", "7d193a09eebefdbec8defaabfc125663f10cf6ab0963ccbefdfe704a8a4784d2") |
|
|
|
on_load(function (package) |
|
if not package:is_precompiled() then |
|
if package:is_plat("windows") then |
|
package:add("deps", "cmake") |
|
package:add("deps", "winflexbison", {kind = "library"}) |
|
else |
|
package:add("deps", "flex", {kind = "library"}) |
|
package:add("deps", "bison") |
|
package:add("deps", "autoconf", "automake", "libtool") |
|
end |
|
package:add("deps", "python 3.x", {kind = "binary"}) |
|
end |
|
package:mark_as_pathenv("VERILATOR_ROOT") |
|
package:addenv("VERILATOR_ROOT", ".") |
|
end) |
|
|
|
on_install("windows", function (package) |
|
import("package.tools.cmake") |
|
local configs = {} |
|
local cxflags = {} |
|
local winflexbison = package:dep("winflexbison") |
|
local flex = winflexbison:fetch() |
|
if flex then |
|
local includedirs = flex.sysincludedirs or flex.includedirs |
|
for _, includedir in ipairs(includedirs) do |
|
table.insert(cxflags, "-I" .. includedir) |
|
end |
|
end |
|
local envs = cmake.buildenvs(package) |
|
envs.VERILATOR_ROOT = nil |
|
envs.WIN_FLEX_BISON = winflexbison:installdir() |
|
io.replace("src/CMakeLists.txt", '${ASTGEN} -I"${srcdir}"', '${ASTGEN} -I "${srcdir}"', {plain = true}) |
|
cmake.install(package, configs, {envs = envs, cxflags = cxflags}) |
|
os.cp(path.join(package:installdir("bin"), "verilator_bin.exe"), path.join(package:installdir("bin"), "verilator.exe")) |
|
end) |
|
|
|
on_install("linux", "macosx", function (package) |
|
import("package.tools.autoconf") |
|
local configs = {} |
|
local cxflags = {} |
|
local flex = package:dep("flex"):fetch() |
|
if flex then |
|
local includedirs = flex.sysincludedirs or flex.includedirs |
|
for _, includedir in ipairs(includedirs) do |
|
table.insert(cxflags, "-I" .. includedir) |
|
end |
|
end |
|
os.vrun("autoconf") |
|
local envs = autoconf.buildenvs(package, {cxflags = cxflags}) |
|
envs.VERILATOR_ROOT = nil |
|
autoconf.install(package, configs, {envs = envs}) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("verilator --version") |
|
end)
|
|
|