Skip to content

R crashes on preferences screen

10 messages · Brandon Hurr, John Magnotti, Rainer M Krug +2 more

#
I removed my current R.app and installed the one at:
http://r.research.att.com/#GUI
R-3.0-branch-snowleopard-signed.pkg

but I still get an immediate crash when I 1) open the preferences
window and 2) click any of the icons in the main "Show All" screen
(but not the tabs)

I also noticed that switching away from either the Color or the Syntax
tab briefly flashes (open then close) the color wheel selection dialog
R version 3.0.2 Patched (2013-11-04 r64155)
Platform: x86_64-apple-darwin10.8.0 (64-bit)

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base


Is there any other specific information that would help?

Thanks,

John
On Wed, Nov 6, 2013 at 10:12 AM, Brandon Hurr <bhive01 at gmail.com> wrote:
#
I have to confirm both, the crash and the flashing of the colour wheel.
R version 3.0.2 (2013-09-25)
Platform: x86_64-apple-darwin10.8.0 (64-bit)

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base
_
platform       x86_64-apple-darwin10.8.0
arch           x86_64
os             darwin10.8.0
system         x86_64, darwin10.8.0
status
major          3
minor          0.2
year           2013
month          09
day            25
svn rev        63987
language       R
version.string R version 3.0.2 (2013-09-25)
nickname       Frisbee Sailing
Cheers,

Rainer
On 11/07/13, 02:17 , John Magnotti wrote:

  
    
1 day later
#
I was just about to tell you guys that have the problem to try running R.app with gdb attached to the process. Then I realized that gdb has gone in Mavericks to be replaced by lldb, which I don't have much of a clue about how to operate....

However, at least the first few steps seem to be similar to using gdb:

Get the process ID for R.app using

Peters-iMac:~ pd$ ps aux | grep R.app
pd              28620   0.1  0.5  3877356  21724   ??  S     1Nov13   0:43.29 /Applications/R.app/Contents/MacOS/R
pd              74190   0.0  0.0  2432784    596 s005  S+   11:45AM   0:00.01 grep R.app

Then attach to it using

Peters-iMac:~ pd$ lldb -p 28620

give your password to allow the debugger to control the process, then, when lldb fires up, tell it to resume the process

(lldb) continue
Process 28620 resuming

Next, you should try doing whatever it takes to reproduce the crash, figure out how to get a traceback, and report back to the list.

-pd
On 07 Nov 2013, at 10:19 , Rainer M Krug <Rainer at krugs.de> wrote:

            

  
    
2 days later
1 day later
#
no more crashing for me

thanks!

John
R version 3.0.2 Patched (2013-11-11 r64202)
Platform: x86_64-apple-darwin10.8.0 (64-bit)

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base
On Sun, Nov 10, 2013 at 9:33 AM, Robert J Goedman <goedman at icloud.com> wrote: