1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-present, Xmake Open Source Community.
--
-- @author ruki
-- @file xmake.lua
--
-- @see https://github.com/xmake-io/xmake/issues/3257
rule("iverilog.binary")
set_extensions(".v", ".sv", ".vhd")
on_load(function (target)
target:set("kind", "binary")
if not target:get("extension") then
target:set("extension", ".vvp")
end
end)
on_buildcmd_files(function(target, batchcmds, sourcebatch, opt)
end)
on_linkcmd(function (target, batchcmds, opt)
local toolchain = assert(target:toolchain("iverilog"), 'we need set_toolchains("iverilog") in target("%s")', target:name())
local iverilog = assert(toolchain:config("iverilog"), "iverilog not found!")
local targetfile = target:targetfile()
local targetdir = path.directory(targetfile)
local argv = {"-o", targetfile}
local sourcebatch = target:sourcebatches()["iverilog.binary"]
local sourcefiles = table.wrap(sourcebatch.sourcefiles)
assert(#sourcefiles > 0, "no source files!")
-- get languages
--
-- Select the Verilog language generation to support in the compiler.
-- This selects between v1364-1995, v1364-2001, v1364-2005, v1800-2005, v1800-2009, v1800-2012.
--
local language_v
local languages = target:get("languages")
if languages then
for _, language in ipairs(languages) do
if language:startswith("v") then
language_v = language
break
end
end
end
if language_v then
local maps = {
["v1364-1995"] = "-g1995",
["v1364-2001"] = "-g2001",
["v1364-2005"] = "-g2005",
["v1800-2005"] = "-g2005-sv",
["v1800-2009"] = "-g2009",
["v1800-2012"] = "-g2012",
}
local flag = maps[language_v]
if flag then
table.insert(argv, flag)
else
assert("unknown language(%s) for iverilog!", language_v)
end
else
local extension = path.extension(sourcefiles[1])
if extension == ".vhd" then
table.insert(argv, "-g2012")
end
end
-- get defines
for _, define in ipairs((target:get_from("defines", "*"))) do
table.insert(argv, "-D" .. define)
end
-- get includedirs
local includedirs = target:get("includedirs")
if includedirs then
for _, includedir in ipairs(includedirs) do
table.insert(argv, path(includedir, function (v) return "-I" .. v end))
end
end
-- get flags
local flags = target:values("iverilog.flags")
if flags then
table.join2(argv, flags)
end
-- do build
table.join2(argv, sourcefiles)
batchcmds:show_progress(opt.progress, "${color.build.target}linking.iverilog %s", path.filename(targetfile))
batchcmds:mkdir(targetdir)
batchcmds:vrunv(iverilog, argv)
batchcmds:add_depfiles(sourcefiles)
batchcmds:set_depmtime(os.mtime(targetfile))
batchcmds:set_depcache(target:dependfile(targetfile))
end)
on_run(function (target)
local toolchain = assert(target:toolchain("iverilog"), 'we need set_toolchains("iverilog") in target("%s")', target:name())
local vvp = assert(toolchain:config("vvp"), "vvp not found!")
os.execv(vvp, {"-n", target:targetfile()})
end)
|