diff options
Diffstat (limited to 'xmake/rules/verilator/xmake.lua')
| -rw-r--r-- | xmake/rules/verilator/xmake.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmake/rules/verilator/xmake.lua b/xmake/rules/verilator/xmake.lua index 4e6f49397..ca60a3289 100644 --- a/xmake/rules/verilator/xmake.lua +++ b/xmake/rules/verilator/xmake.lua @@ -34,9 +34,9 @@ rule("verilator.binary") -- Just to avoid before_buildcmd_files being executed at build time end) - on_build_files(function (target, batchjobs, sourcebatch, opt) - import("verilator").build_cppfiles(target, batchjobs, sourcebatch, opt) - end, {batch = true, distcc = true}) + on_build_files(function (target, jobgraph, sourcebatch, opt) + import("verilator").build_cppfiles(target, jobgraph, sourcebatch, opt) + end, {jobgraph = true, batch = true, distcc = true}) before_buildcmd_files(function(target, batchcmds, sourcebatch, opt) import("verilator").buildcmd_vfiles(target, batchcmds, sourcebatch, opt) @@ -61,9 +61,9 @@ rule("verilator.static") -- Just to avoid before_buildcmd_files being executed at build time end) - on_build_files(function (target, batchjobs, sourcebatch, opt) - import("verilator").build_cppfiles(target, batchjobs, sourcebatch, opt) - end, {batch = true, distcc = true}) + on_build_files(function (target, jobgraph, sourcebatch, opt) + import("verilator").build_cppfiles(target, jobgraph, sourcebatch, opt) + end, {jobgraph = true, batch = true, distcc = true}) before_buildcmd_files(function(target, batchcmds, sourcebatch, opt) import("verilator").buildcmd_vfiles(target, batchcmds, sourcebatch, opt) |
