Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 2.34 KB

README.md

File metadata and controls

53 lines (35 loc) · 2.34 KB

vivado-git

Trying to make Vivado more git-friendly on Windows.

Requirements

  • Git for Windows
  • Add C:\Program Files\Git\bin (or wherever you have your git.exe) to your PATH

Installation

Add init.tcl (or append the relevant lines if you already have something in it) along with the scripts directory to %APPDATA%\Roaming\Xilinx\Vivado.

How it works

Vivado is a pain in the ass to source control decently, so these scripts provide:

Workflow

  1. After creating project in Vivado you have to make 'git init' under TCL console to add you project to Git. Git init wrapper automatically creates .gitignore file with all temporary folders and logs

  2. Here is an example of a possible project structure:

    PROJECT_NAME
        ├── .git
        ├── .gitignore
        ├── project_name.tcl         # Project generator script
        ├── project_name.srcs/       # Tracked source files
        │   ├── *.v
        │   ├── *.vhd
        │   └── ...
        ├── project_name.xpr         # Untracked generated files
        ├── project_name.cache/      # Untracked generated files
        ├── project_name.hw/         # Untracked generated files
        ├── project_name.sim/        # Untracked generated files
        └── ...
    
  3. Stage your source files with git add, for instance git add project_name.srcs

  4. When you are done, git commit your project. A PROJECT_NAME.tcl script will be created in your C:/.../PROJECT_NAME folder and added to your commit.

  5. All other Git commands (git push, git branch, etc) should work from TCL console as usual.

  6. When opening the project after a cloning, do it by using Tools -> Run Tcl Script... and selecting the PROJECT_NAME.tcl file created earlier. This will regenerate the project so that you can continue working.

TODO: Take care about SDK files (project_name.sdk/). Some of them are text but some others are binary.