Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

symbiyosys: honour include paths #371

Closed
wants to merge 3 commits into from

Commits on Dec 29, 2022

  1. [fix] fix the build command for symbiyosys

    The current `run` step of the symbiyosys backend generates a `sby` command which includes the hardcoded `-d build` argument. However, this command line argument is incompatible with multiple tasks.
    
    This fix removes the hardcoded `-d` argument and introduces a new `extra_options` tool option for the symbiyosys backend, which can be used to pass additional arguments for the `sby` command (e.g. `-d build`, if necessary).
    
    The example usage of the `extra_options`:
    ```
       symbiyosys:
         tasknames:
           # A list of task names to pass to sby. Defaults to empty (in which case
           # sby will run each task in the .sby file)
           - my_proof
         extra_options:
           # A list of extra command line arguments to sby. Defaults to empty.
           - -d
           - build
    ```
    Henkru committed Dec 29, 2022
    Configuration menu
    Copy the full SHA
    14a192e View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2023

  1. Configuration menu
    Copy the full SHA
    eb1a288 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2023

  1. Fix includes

    ollie-etl committed Mar 25, 2023
    Configuration menu
    Copy the full SHA
    e45c8ad View commit details
    Browse the repository at this point in the history