Re: [R] problem to building R (datasets)

2010-06-24 Thread Geun Seop Lee
Thank you.

I finally found what was the problem.
By mistake, I compiled with different version of MinGW compiler. I heard
that new MinGw compiler does not support _Unwind_ kinds of functions
anymore.

Thank you again.

Lee.

On Wed, Jun 23, 2010 at 7:30 PM, Geun Seop Lee clarmas...@gmail.com wrote:

 Thank you for your reply.
 The reason why I was trying to compile R source is that I encountered some
 compile errors when I tried to use Rcpp package in order to compile my c++
 program connected to R.

 A lot of link errors happened like

 undefined reference to `__gxx_personality_sj0'
 undefined reference to `_Unwind_SjLj_Register'
 undefined reference to `_Unwind_SjLj_Unregister'

 These link errors were happened even after I installed R 2.11.1 and use
 Makefile.win

 I will really appreciate if you can give me a hint to solve that
 problems...

 Thank you again.

 Lee.


 On Wed, Jun 23, 2010 at 5:52 PM, Joris Meys jorism...@gmail.com wrote:

 Why compile from source? 2.11.1 installs fine on XP from the binary,
 so that's the more obvious solution.

 Cheers
 Joris

 On Thu, Jun 24, 2010 at 12:39 AM, Geun Seop Lee clarmas...@gmail.com
 wrote:
 
   Dear all,
 
  While I was trying to build R source, I found an error at datasets
 package
  (there was no error before that)
 
  ../../../library/datasets/R/datasets is unchanged
  Error in dir.create(Rdatadir, showWarnings = FALSE) :
file name conversion problem
  Calls: Anonymous - Anonymous - dir.create
  Execution halted
  make[2]: *** [all] Error 1
  make[1]: *** [R] Error 1
  make: *** [all] Error 2
 
  And it was caused by
 
   @$(ECHO) tools:::data2LazyLoadDB(\$(pkg)\, compress=3) | \
 R_DEFAULT_PACKAGES=NULL LC_ALL=C $(R_EXE)  /dev/null
  at the Makefile.win in the src/datasets directory
  I am using Window XP and tried to compile 2.11.1 version.
 
  I can't imagine how I can solve this problem. Any hints or suggestions
  will be appreciated.
 
  Thank you.
 
  Lee.
 
 
 
 [[alternative HTML version deleted]]
 
  __
  R-help@r-project.org mailing list
  https://stat.ethz.ch/mailman/listinfo/r-help
  PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.htmlhttp://www.r-project.org/posting-guide.html
  and provide commented, minimal, self-contained, reproducible code.
 




 --
 Joris Meys
 Statistical consultant

 Ghent University
 Faculty of Bioscience Engineering
 Department of Applied mathematics, biometrics and process control

 tel : +32 9 264 59 87
 joris.m...@ugent.be
 ---
 Disclaimer : http://helpdesk.ugent.be/e-maildisclaimer.php




[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] problem to building R (datasets)

2010-06-23 Thread Geun Seop Lee

  Dear all,

 While I was trying to build R source, I found an error at datasets package
 (there was no error before that)

 ../../../library/datasets/R/datasets is unchanged
 Error in dir.create(Rdatadir, showWarnings = FALSE) :
   file name conversion problem
 Calls: Anonymous - Anonymous - dir.create
 Execution halted
 make[2]: *** [all] Error 1
 make[1]: *** [R] Error 1
 make: *** [all] Error 2

 And it was caused by

  @$(ECHO) tools:::data2LazyLoadDB(\$(pkg)\, compress=3) | \
R_DEFAULT_PACKAGES=NULL LC_ALL=C $(R_EXE)  /dev/null
 at the Makefile.win in the src/datasets directory
 I am using Window XP and tried to compile 2.11.1 version.

 I can't imagine how I can solve this problem. Any hints or suggestions
 will be appreciated.

 Thank you.

 Lee.



[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] problem to building R (datasets)

2010-06-23 Thread Geun Seop Lee
Dear all,

While I was trying to build R source, I found an error at datasets package
(there was no error before that)

../../../library/datasets/R/datasets is unchanged
Error in dir.create(Rdatadir, showWarnings = FALSE) :
  file name conversion problem
Calls: Anonymous - Anonymous - dir.create
Execution halted
make[2]: *** [all] Error 1
make[1]: *** [R] Error 1
make: *** [all] Error 2

And it was caused by

 @$(ECHO) tools:::data2LazyLoadDB(\$(pkg)\, compress=3) | \
   R_DEFAULT_PACKAGES=NULL LC_ALL=C $(R_EXE)  /dev/null
at the Makefile.win in the src/datasets directory
I am using Window XP and tried to compile 2.11.1 version.

I can't imagine how I can solve this problem. Any hints or suggestions will
be appreciated.

Thank you.

Lee.

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] problem to building R (datasets)

2010-06-23 Thread Joris Meys
Why compile from source? 2.11.1 installs fine on XP from the binary,
so that's the more obvious solution.

Cheers
Joris

On Thu, Jun 24, 2010 at 12:39 AM, Geun Seop Lee clarmas...@gmail.com wrote:

  Dear all,

 While I was trying to build R source, I found an error at datasets package
 (there was no error before that)

 ../../../library/datasets/R/datasets is unchanged
 Error in dir.create(Rdatadir, showWarnings = FALSE) :
   file name conversion problem
 Calls: Anonymous - Anonymous - dir.create
 Execution halted
 make[2]: *** [all] Error 1
 make[1]: *** [R] Error 1
 make: *** [all] Error 2

 And it was caused by

 �...@$(ECHO) tools:::data2LazyLoadDB(\$(pkg)\, compress=3) | \
    R_DEFAULT_PACKAGES=NULL LC_ALL=C $(R_EXE)  /dev/null
 at the Makefile.win in the src/datasets directory
 I am using Window XP and tried to compile 2.11.1 version.

 I can't imagine how I can solve this problem. Any hints or suggestions
 will be appreciated.

 Thank you.

 Lee.



        [[alternative HTML version deleted]]

 __
 R-help@r-project.org mailing list
 https://stat.ethz.ch/mailman/listinfo/r-help
 PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
 and provide commented, minimal, self-contained, reproducible code.





-- 
Joris Meys
Statistical consultant

Ghent University
Faculty of Bioscience Engineering
Department of Applied mathematics, biometrics and process control

tel : +32 9 264 59 87
joris.m...@ugent.be
---
Disclaimer : http://helpdesk.ugent.be/e-maildisclaimer.php

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] problem to building R (datasets)

2010-06-23 Thread Geun Seop Lee
Thank you for your reply.
The reason why I was trying to compile R source is that I encountered some
compile errors when I tried to use Rcpp package in order to compile my c++
program connected to R.

A lot of link errors happened like

undefined reference to `__gxx_personality_sj0'
undefined reference to `_Unwind_SjLj_Register'
undefined reference to `_Unwind_SjLj_Unregister'

These link errors were happened even after I installed R 2.11.1 and use
Makefile.win

I will really appreciate if you can give me a hint to solve that problems...

Thank you again.

Lee.


On Wed, Jun 23, 2010 at 5:52 PM, Joris Meys jorism...@gmail.com wrote:

 Why compile from source? 2.11.1 installs fine on XP from the binary,
 so that's the more obvious solution.

 Cheers
 Joris

 On Thu, Jun 24, 2010 at 12:39 AM, Geun Seop Lee clarmas...@gmail.com
 wrote:
 
   Dear all,
 
  While I was trying to build R source, I found an error at datasets
 package
  (there was no error before that)
 
  ../../../library/datasets/R/datasets is unchanged
  Error in dir.create(Rdatadir, showWarnings = FALSE) :
file name conversion problem
  Calls: Anonymous - Anonymous - dir.create
  Execution halted
  make[2]: *** [all] Error 1
  make[1]: *** [R] Error 1
  make: *** [all] Error 2
 
  And it was caused by
 
   @$(ECHO) tools:::data2LazyLoadDB(\$(pkg)\, compress=3) | \
 R_DEFAULT_PACKAGES=NULL LC_ALL=C $(R_EXE)  /dev/null
  at the Makefile.win in the src/datasets directory
  I am using Window XP and tried to compile 2.11.1 version.
 
  I can't imagine how I can solve this problem. Any hints or suggestions
  will be appreciated.
 
  Thank you.
 
  Lee.
 
 
 
 [[alternative HTML version deleted]]
 
  __
  R-help@r-project.org mailing list
  https://stat.ethz.ch/mailman/listinfo/r-help
  PLEASE do read the posting guide
 http://www.R-project.org/posting-guide.htmlhttp://www.r-project.org/posting-guide.html
  and provide commented, minimal, self-contained, reproducible code.
 




 --
 Joris Meys
 Statistical consultant

 Ghent University
 Faculty of Bioscience Engineering
 Department of Applied mathematics, biometrics and process control

 tel : +32 9 264 59 87
 joris.m...@ugent.be
 ---
 Disclaimer : http://helpdesk.ugent.be/e-maildisclaimer.php


[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.