You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -413,11 +413,12 @@ The `bender config` command prints the currently active configuration as JSON to
413
413
414
414
### `script` --- Generate tool-specific scripts
415
415
416
-
The `bender script <format>` command can generate scripts to feed the source code of a package and its dependencies into a vendor tool. These scripts are rendered using internally stored templates with the [tera](https://tera.netlify.app/) crate, but custom templates can also be used.
416
+
The `bender script <format>` command can generate scripts to feed the source code of a package and its dependencies into a vendor tool. These scripts are rendered using internally stored templates with the [tera](https://keats.github.io/tera/docs/) crate, but custom templates can also be used.
417
417
418
418
Supported formats:
419
419
420
-
- `flist`: A flat file list amenable to be directly inlined into the invocation command of a tool, e.g. `verilate $(bender script flist)`.
420
+
- `flist`: A flat whitespace-separated file list.
421
+
- `flist-plus`: A flat file list amenable to be directly inlined into the invocation command of a tool, e.g. `verilate $(bender script flist)`.
421
422
- `vsim`: A Tcl compilation script for Mentor ModelSim/QuestaSim.
422
423
- `vcs`: A Tcl compilation script for VCS.
423
424
- `verilator`: Command line arguments for Verilator.
@@ -428,8 +429,8 @@ Supported formats:
428
429
- `vivado`: A Tcl file addition script for Xilinx Vivado.
429
430
- `vivado-sim`: Same as `vivado`, but specifically for simulation targets.
430
431
- `precision`: A Tcl compilation script for Mentor Precision.
431
-
- `template`: A custom [tera](https://tera.netlify.app/) template, provided using the `--template` flag.
432
-
- `template_json`: The json struct used to render the [tera](https://tera.netlify.app/) template.
432
+
- `template`: A custom [tera](https://keats.github.io/tera/docs/) template, provided using the `--template` flag.
433
+
- `template_json`: The json struct used to render the [tera](https://keats.github.io/tera/docs/) template.
433
434
434
435
Furthermore, similar flags to the `sources` command exist.
0 commit comments