Open alimousios98x opened 14 hours ago
Perhaps you wanted to run this (as seen in this tutorial)?
./gradlew run --args="ReportTimingExample <dcp file name>"
I see that we don't have TimingAndWirelengthReport
as a listed execution target. In that case, you can run it directly as long as you set the CLASSPATH
environment variable like this (from your screenshot, it looks like you are using Windows PowerShell):
# Assuming PowerShell and you are located in the 'RapidWright' directory
$env:CLASSPATH = (Get-Location).Path + "\bin;" + (Get-Location).Path + "\jars\*"
Then you can run the application directly:
java com.xilinx.rapidwright.rwroute.TimingAndWirelengthReport <input dcp file name>
I am trying to run TimingAndWirelengthExample but it seems it isn't recognized as an application or any other method under rwroute. How can i build it or if it's something else I am doing wrong.