Removed hprof due to removal from JDK9 (http://openjdk.java.net/jeps/240)

This commit is contained in:
Sergey Bogolepov
2018-06-09 18:55:02 +07:00
committed by Sergey Bogolepov
parent 54a9969f64
commit a3c82ba5ce
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ while [ $# -gt 0 ]; do
;;
--time)
konan_args=("${konan_args[@]}" --time)
java_args=("${java_args[@]}" -agentlib:hprof=cpu=samples -Dkonan.profile=true)
java_args=("${java_args[@]}" -Dkonan.profile=true)
TIMECMD=time
shift
;;
+1 -1
View File
@@ -40,7 +40,7 @@ if not "!ARG!" == "" (
)
if "!ARG!" == "--time" (
set "KONAN_ARGS=%KONAN_ARGS% --time"
set "JAVA_ARGS=%JAVA_ARGS% -agentlib:hprof=cpu=samples -Dkonan.profile=true"
set "JAVA_ARGS=%JAVA_ARGS% -Dkonan.profile=true"
goto next
)