aboutsummaryrefslogtreecommitdiffstats
path: root/passes/cmds/exec.cc
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate gcc-4.8Miodrag Milanovic2023-01-111-4/+4
|
* Fitting help messages to 80 character widthKrystalDelusion2022-08-241-2/+2
| | | | | | | | | Uses the regex below to search (using vscode): ^\t\tlog\("(.{10,}(?<!\\n)|.{81,}\\n)"\); Finds any log messages double indented (which help messages are) and checks if *either* there are is no newline character at the end, *or* the number of characters before the newline is more than 80.
* Fixing old e-mail addresses and deadnamesClaire Xenia Wolf2021-06-081-1/+1
| | | | | | | | s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi; s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi; s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi; s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi; s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g;
* Use C++11 final/override keywords.whitequark2020-06-181-2/+2
|
* Explicit include of csignalMiodrag Milanovic2020-03-281-0/+1
|
* windows - there are no stopping signalsMiodrag Milanovic2020-03-281-0/+1
|
* Update copyright and license header.Alberto Gonzalez2020-03-181-1/+1
| | | | | I hereby assign to Claire Wolf the copyright for all work I did on `passes/cmds/exec.cc`. In the event that this copyright assignment is not legally valid, I offer this work under the ISC license.
* Clean up `exec` code according to review.Alberto Gonzalez2020-03-181-5/+18
| | | | Co-Authored-By: Miodrag Milanović <mmicko@gmail.com>
* Allow specifying multiple regexes to match in `exec` command output, and ↵Alberto Gonzalez2020-03-161-33/+67
| | | | also to specify regexes that must _not_ match.
* Add `exec` command to run shell commands.Alberto Gonzalez2020-03-161-0/+156