cmd apio raw - zapta/apio-new-doc-wiki.delete-me GitHub Wiki

Apio raw

The command apio raw allows you to bypass Apio and run underlying tools directly. This is an advanced command that requires familiarity with the underlying tools.

Before running the command, Apio temporarily modifies system environment variables such as $PATH to provide access to its packages. To view these environment changes, run the command with the -v option.

EXAMPLES

apio raw    -- yosys --version      # Yosys version
apio raw -v -- yosys --version      # Verbose apio info.
apio raw    -- yosys                # Yosys interactive mode.
apio raw    -- icepll -i 12 -o 30   # Calc ICE PLL.
apio raw    -- which yosys          # Lookup a command.
apio raw -v                         # Show apio env setting.
apio raw -h                         # Show this help info.

OPTIONS

-v, --verbose  Show detailed output.
-h, --help     Show this message and exit.

NOTES

  • The marker -- marker is used to separate between the arguments of the apio command itself and those of the executed command.