Skip to content

Commit

Permalink
marble.tcl: gitid_for_verilog broken assignment fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
a-amodio committed Dec 20, 2023
1 parent 013c236 commit bbc11ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/test_marble_family/marble.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ set_property verilog_define [list "CHIP_FAMILY_7SERIES"] [current_fileset]

# Get shorter git commit ID for verilog and bitfile filename
set gitid_for_filename [exec git describe --always --abbrev=8 --dirty]
set gitid_for_verilog 32'h$[string range $gitid_for_filename 0 7]
set gitid_for_verilog 32'h[exec git rev-parse --short=8 HEAD]
set new_defs [list "GIT_32BIT_ID=$gitid_for_verilog" "REVC_1W"]

launch_runs synth_1
Expand Down

0 comments on commit bbc11ff

Please sign in to comment.