-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Is there binary release? #43
Comments
One approach is to use coursier to grab a binary. Once you have the coursier command line tool, you have two options. You can download diagrammer and all its dependencies and launch it immediately: coursier \
launch \
edu.berkeley.cs:firrtl-diagrammer_2.12:1.2.0-RC1 \
--main-class dotvisualizer.FirrtlDiagrammer Or, you can install a binary you can call later (here, coursier \
bootstrap \
edu.berkeley.cs:firrtl-diagrammer_2.12:1.2.0-RC1 \
--main-class dotvisualizer.FirrtlDiagrammer \
-o diagrammer You can vary which version you grab by changing the Scala version (2.12 above) or the published version (1.2.0-RC1 above, 1.1.4 would be another option). |
Another approach is to build an executable jar. I just tried it on an ubuntu system.
You can put that jar and script somewhere else or just add diagrammer/utils/bin to your path |
thx for your reply :) |
thx for your reply, it works! |
Hope for executable binary for ubuntu
The text was updated successfully, but these errors were encountered: