hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 53f9de65e3d44ac77ac1d872ef41d04b0b5805c6
parent 960455a3f11cf04e3d34c49908621dd36c7b53e1
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat,  3 Apr 2021 11:01:54 -0400

cmd/hare: remove TODOs regarding rt omission

There's not really any good reason not to link with rt if you're using
the build driver.

Diffstat:
Mcmd/hare/subcmds.ha | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/cmd/hare/subcmds.ha b/cmd/hare/subcmds.ha @@ -84,8 +84,6 @@ fn build(args: []str) void = { }; let depends: []*task = []; - - // Always add rt (TODO: maybe a flag to turn this off?) sched_module(&plan, ["rt"], &depends); for (let i = 0z; i < len(ver.depends); i += 1z) { @@ -184,8 +182,6 @@ fn run(args: []str) void = { }; let depends: []*task = []; - - // Always add rt (TODO: maybe a flag to turn this off?) sched_module(&plan, ["rt"], &depends); for (let i = 0z; i < len(ver.depends); i += 1z) { @@ -264,8 +260,6 @@ fn test(args: []str) void = { }; let depends: []*task = []; - - // Always add rt (TODO: maybe a flag to turn this off?) sched_module(&plan, ["rt"], &depends); for (let i = 0z; i < len(ver.depends); i += 1z) {