Pass debug hooks through project-specific makefiles
This commit is contained in:
		| @@ -1,3 +0,0 @@ | |||||||
| # See LICENSE for license details. |  | ||||||
|  |  | ||||||
| # Write debug probes, save MMI for BRAMs in the design |  | ||||||
| @@ -1,3 +0,0 @@ | |||||||
| # See LICENSE for license details. |  | ||||||
|  |  | ||||||
| # Instantiate ILAs |  | ||||||
| @@ -4,7 +4,9 @@ | |||||||
| source [file join $scriptdir "synth.tcl"] | source [file join $scriptdir "synth.tcl"] | ||||||
|  |  | ||||||
| # Pre-implementation debug | # Pre-implementation debug | ||||||
| source [file join $scriptdir "pre-impl-debug.tcl"] | if {[info exists ::env(PRE_IMPL_DEBUG_TCL)]} { | ||||||
|  |   source [file join $scriptdir ::env(PRE_IMPL_DEBUG_TCL)] | ||||||
|  | } | ||||||
|  |  | ||||||
| # Post synthesis optimization | # Post synthesis optimization | ||||||
| source [file join $scriptdir "opt.tcl"] | source [file join $scriptdir "opt.tcl"] | ||||||
| @@ -19,7 +21,9 @@ source [file join $scriptdir "route.tcl"] | |||||||
| source [file join $scriptdir "bitstream.tcl"] | source [file join $scriptdir "bitstream.tcl"] | ||||||
|  |  | ||||||
| # Post-implementation debug | # Post-implementation debug | ||||||
| source [file join $scriptdir "post-impl-debug.tcl"] | if {[info exists ::env(POST_IMPL_DEBUG_TCL)]} { | ||||||
|  |   source [file join $scriptdir ::env(POST_IMPL_DEBUG_TCL)] | ||||||
|  | } | ||||||
|  |  | ||||||
| # Create reports for the current implementation | # Create reports for the current implementation | ||||||
| source [file join $scriptdir "report.tcl"] | source [file join $scriptdir "report.tcl"] | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user