aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJack Koenig2019-04-26 13:10:44 -0700
committerGitHub2019-04-26 13:10:44 -0700
commita7cf6ff3416a11088d811a435ba71fd36b191fb4 (patch)
tree79e2e8c5753903ca6d14e9b952c26a07442bd980 /utils
parent99ae1d6649f1731c5dec2098b10733735232b72c (diff)
parentef8f06f23b9ee6cf86de2450752dfd0fcd32da80 (diff)
Merge pull request #1005 from freechipsproject/f764.7
Stage/Phase
Diffstat (limited to 'utils')
-rwxr-xr-xutils/bin/firrtl3
-rwxr-xr-xutils/bin/firrtl-profiling3
2 files changed, 2 insertions, 4 deletions
diff --git a/utils/bin/firrtl b/utils/bin/firrtl
index f955b9ee..fd1a2574 100755
--- a/utils/bin/firrtl
+++ b/utils/bin/firrtl
@@ -2,6 +2,5 @@
# This may be a brittle way to find $(root_dir)/utils/bin, is there a better way?
path=`dirname "$0"`
-cmd="java -cp ${path}/firrtl.jar firrtl.Driver ${@:1}"
+cmd="java -cp ${path}/firrtl.jar firrtl.stage.FirrtlMain ${@:1}"
eval $cmd
-
diff --git a/utils/bin/firrtl-profiling b/utils/bin/firrtl-profiling
index 5aa73e00..d0a6ef2b 100755
--- a/utils/bin/firrtl-profiling
+++ b/utils/bin/firrtl-profiling
@@ -2,6 +2,5 @@
# This may be a brittle way to find $(root_dir)/utils/bin, is there a better way?
path=`dirname "$0"`
-cmd="java -agentlib:hprof=cpu=samples,depth=100,interval=7,lineno=y,thread=y,file=output.hprof -cp ${path}/firrtl.jar firrtl.Driver ${@:1}"
+cmd="java -agentlib:hprof=cpu=samples,depth=100,interval=7,lineno=y,thread=y,file=output.hprof -cp ${path}/firrtl.jar firrtl.stage.FirrtlMain ${@:1}"
eval $cmd
-