Re: [R-SIG-Mac] [External] [External] Rmpfr crashes on Mac

2021-11-28 Thread Richard M. Heiberger
works normally on Mac M1. > On Nov 29, 2021, at 00:43, Kevin Ushey wrote: > > library(Rmpfr) > x <- mpfr(-50.1, 200) > str(x) > ___ R-SIG-Mac mailing list R-SIG-Mac@r-project.org https://stat.ethz.ch/mailman/listinfo/r-sig-mac

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Kevin Ushey
Okay, I've reproduced the crash on my 2013 Intel MacBook Pro. In this case, the issue reproduces more readily because RStudio is calling str() behind the scenes (which is the cause of the crash in this case). So, a plain R reproducible example: library(Rmpfr) x <- mpfr(-50.1, 200) str(x) and I

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Simon Urbanek
Kevin, that is a different story, yes, Rosetta2 is incomplete - the advice on M1 is to use native R. Cheers, Simon > On Nov 29, 2021, at 12:30 PM, Kevin Ushey wrote: > > I can reproduce something similar on my M1 macOS machine, when using the > x86_64 build of R. I see: > >> x1 <-

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Dev Chakraborty
I am using: RStudio 2021.09.0+351 "Ghost Orchid" Release (077589bcad3467ae79f318afe8641a1899a51606, 2021-09-20) for macOS Mozilla/5.0 (Macintosh; Intel Mac OS X 12_0_1) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.12.10 Chrome/69.0.3497.128 Safari/537.36 It is an RStudio issue; the

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Erich Subscriptions
One more thing: After compiling Rmpfr from source, things worked. > On 29.11.2021, at 00:30, Kevin Ushey wrote: > > I can reproduce something similar on my M1 macOS machine, when using the > x86_64 build of R. I see: > >> x1 <- mpfr(-50, 200) > *** caught illegal operation *** > address

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Erich Neuwirth
My iMac ist Late 2014, so it is rather old (and x86 architecture) As I already wrote, I am experiencing the crash also. > On 29.11.2021, at 00:30, Kevin Ushey wrote: > > I can reproduce something similar on my M1 macOS machine, when using the > x86_64 build of R. I see: > >> x1 <- mpfr(-50,

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Kevin Ushey
I can reproduce something similar on my M1 macOS machine, when using the x86_64 build of R. I see: > x1 <- mpfr(-50, 200) *** caught illegal operation *** address 0x10c5f623b, cause 'illegal opcode' This is with the binary of Rmpfr 0.8-7 as from CRAN, with R 4.1.2. Here's what LLDB says: *

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Simon Urbanek
Dev, as a first step, please don't use RStudio - we have to establish if this is an R issue or not first (RStudio is not R). Second, if it still crashes, please provide 1) the crash report 2) the output od sesionInfo() in R and 3) the output of system_profiler SPHardwareDataType

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Richard M. Heiberger
I just downloaded RStudio 2021.09.1 Build 372 This is an Intel RStudio running on my Apple M1 chip. The example works normally. Do you have the most recent RStudio? I tried on the earlier RStudio I downloaded in January, right after getting this M1 computer, and that version Rstudio wouldn't

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Dev Chakraborty
I still get the crash. I tried to recreate your commands on my machine (macOS Monterey, Version 12.0.1). Here is a summary; further details are below. 1. Installing from CRAN downloaded file Rmpfr_0.8-7.tar.gz failed, see further details. 2. Therefore I had to instal the binary file from CRAN,

Re: [R-SIG-Mac] [External] Rmpfr crashes on Mac

2021-11-28 Thread Richard M. Heiberger
Works normally in R-4.1.2 with Rmpfr_0.8-7 on Macintosh aarch64-apple-darwin20 I am running inside Emacs using ESS > packageVersion("Rmpfr") [1] ‘0.8.7’ > library(Rmpfr) Loading required package: gmp Attaching package: ‘gmp’ The following objects are masked from ‘package:base’: %*%, apply,

Re: [R-SIG-Mac] Rmpfr crashes on Mac

2021-11-28 Thread Erich Neuwirth
I am using R 4.1.2 Rmpfr 0.8.7 MacOS 11.6.1 (x86 Machine) > On 28.11.2021, at 13:12, Duncan Murdoch wrote: > > On 28/11/2021 7:05 a.m., Erich Neuwirth wrote: >> I checked, and I also get the crash in Rstudio. >> In Rgui, it works. > > I don't get the crash, using R 4.1.0 in MacOS 10.15.7, with

Re: [R-SIG-Mac] Rmpfr crashes on Mac

2021-11-28 Thread Duncan Murdoch
On 28/11/2021 7:05 a.m., Erich Neuwirth wrote: I checked, and I also get the crash in Rstudio. In Rgui, it works. I don't get the crash, using R 4.1.0 in MacOS 10.15.7, with the same Rmpfr version in RStudio or R.app. Duncan Murdoch On 27.11.2021, at 21:46, Dev Chakraborty wrote: I

Re: [R-SIG-Mac] Rmpfr crashes on Mac

2021-11-28 Thread Erich Neuwirth
I checked, and I also get the crash in Rstudio. In Rgui, it works. > On 27.11.2021, at 21:46, Dev Chakraborty wrote: > > I used package Rmpfr ca. 2017 and it worked fine. The latest version > (0.8-7) causes R (running under RStudio) to crash. A simple example is: > > library(Rmpfr) > x1 <-

[R-SIG-Mac] Rmpfr crashes on Mac

2021-11-28 Thread Dev Chakraborty
I used package Rmpfr ca. 2017 and it worked fine. The latest version (0.8-7) causes R (running under RStudio) to crash. A simple example is: library(Rmpfr) x1 <- mpfr(-50, 200) x2 <- mpfr(-50.1, 200) Which gives the message: R Session Aborted R encountered a fatal error The session was