File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
com.oracle.truffle.r.release/src Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 44which is an option that enables logging of FastR internal errors for bug reporting purposes. Experimental options can be unlocked
55using ` --experimental-options ` or with ` ContextBuilder#allowExperimentalOptions ` .
66* the MRAN mirror used by FastR by default instead of CRAN was bumped to 2019-02-13
7+ * options for the JVM or native image are now passed using ` --vm. ` prefix in both cases instead of ` --jvm. ` or ` --native. `
8+ (e.g., ` --jvm.Dproperty=false ` becomes ` --vm.Dproperty=false ` )
9+
10+ New features:
11+
12+ * whenever possible, errors are propagated to the FastR embedder
713
814Added missing R builtins and C API
915
@@ -13,7 +19,6 @@ Bug fixes:
1319
1420* ` C_numeric_deriv ` gives wrong results of gradient #54
1521* ` tcrossprod ` with a single vector #56
16- * whenever possible, errors are propagated to the FastR embedder
1722* ` length<- ` would remove attributes from the target even if it was a shared value
1823* ` length(x) <- N ` should not strip attributes if ` length(x) == N ` , which is not in line with GNU-R documentation,
1924but relied upon in the ` methods ` package #55
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ for o in "$@"; do
8282 done
8383 fi
8484 elif [[ " $o " == --vm.* ]]; then
85- vm_arg=( " ${o# --vm.} " )
85+ vm_arg=" ${o# --vm.} "
8686 if [[ " $vm_arg " == " cp" ]]; then
8787 >&2 echo " '--vm.cp' argument must be of the form '--vm.cp=<classpath>', not two separate arguments"
8888 exit 1
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ for o in "$@"; do
8282 done
8383 fi
8484 elif [[ " $o " == --vm.* ]]; then
85- vm_arg=( " ${o# --vm.} " )
85+ vm_arg=" ${o# --vm.} "
8686 if [[ " $vm_arg " == " cp" ]]; then
8787 >&2 echo " '--vm.cp' argument must be of the form '--vm.cp=<classpath>', not two separate arguments"
8888 exit 1
You can’t perform that action at this time.
0 commit comments